Skip to content

Commit

Permalink
Update module in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nabla-c0d3 committed Jan 31, 2019
1 parent 26bdd63 commit b0ca659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def get_include_files():
# Dependencies
install_requires=[
'nassl>=2.1.0,<2.2.0',
'cryptography==2.3',
'cryptography==2.5',
'tls-parser>=1.2.0,<1.3.0'
],

Expand Down

2 comments on commit b0ca659

@blshkv
Copy link

@blshkv blshkv commented on b0ca659 Feb 1, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There seems no reason of requiring a specific version of crypthograpy. Please use ">=" if that minimum version is really required. The reason of my complain is that my distro has not bumped the version 2.5 yet and I have to either wait or fork and bump it myself.

@nabla-c0d3
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was going to use some methods that are only in 2.5, and also they've broken the API before between two versions so that's why I had to freeze to a specific number.

Please sign in to comment.