Skip to content

Commit

Permalink
Fix dependencies for python 2.7 and 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Kudinov committed Dec 1, 2020
1 parent 7d7d3e6 commit cdc7cc0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
3 changes: 0 additions & 3 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,3 @@ prospector[with_pyroma]==1.1.6.2; python_version <= "3.5"

pyflakes==2.2.0; python_version >= "3.7"
pyflakes==1.6.0; python_version < "3.7"

cryptography==3.0; python_version == "3.5"
cryptography==2.9; python_version == "2.7"
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,13 @@
'cliff==2.7.0',
'stevedore>=1.10.0',
'requests>=2.7.0',
'cryptography>=1.3.1',
'cryptography>=1.3.1; python_version >= "3.6"',
'cryptography==3.0; python_version == "3.5"',
'cryptography==2.9; python_version == "2.7"',
'six>=1.10.0',
'ndg-httpsclient>=0.4.0',
'pyopenssl>=0.15.1',
'pyopenssl>=0.15.1; python_version >= "3.6"',
'pyopenssl>=0.15.1,<=19.1.0; python_version == "2.7" or python_version == "3.5"',
'cached-property>=1.3.0',
'paramiko>=1.16.0',
'pathlib2>=2.1.0',
Expand Down

0 comments on commit cdc7cc0

Please sign in to comment.