Skip to content

Commit

Permalink
Downgraded pyyaml to 5.3 for earlier version of Python
Browse files Browse the repository at this point in the history
  • Loading branch information
jerrymakesjelly committed Apr 15, 2022
1 parent 2827697 commit ddafca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoremovetorrents/compatibility/pyyaml_version_.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# To make our program still available in earlier versions of Python,
# we select an older version of pyyaml manually. (Not Recommend)

PYYAML_VERSION = 'pyyaml' if sys.version_info >= (3, 6, 0) else 'pyyaml==5.4.1'
PYYAML_VERSION = 'pyyaml' if sys.version_info >= (3, 6, 0) else 'pyyaml==5.3'

0 comments on commit ddafca6

Please sign in to comment.