Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nolze committed Aug 24, 2018
1 parent 40edd21 commit 1997679
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='msoffcrypto-tool',
version='4.6.0',
version='4.6.1',
description='A Python tool and library for decrypting MS Office files with passwords or other keys',
long_description=open("README.md", "r").read(),
long_description_content_type='text/markdown',
Expand All @@ -17,8 +17,8 @@
"msoffcrypto.method",
],
install_requires=[
'olefile >= 0.44',
'cryptography >= 2.0.0',
'olefile >= 0.45',
'cryptography >= 2.3',
],
test_require=[
'nose >= 1.3.7',
Expand Down

2 comments on commit 1997679

@christian-intra2net
Copy link
Contributor

Choose a reason for hiding this comment

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

Is there a reason you require cryptography >= 2.3 here? I do not see the necessity in the code and it seems to work fine with cryptography 2.0 .

@nolze
Copy link
Owner Author

@nolze nolze commented on 1997679 Feb 26, 2019

Choose a reason for hiding this comment

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

Not really. It was a random update to benefit from a number of recent fixes and improvements of the libraries (as some projects do using Greenkeeper or requires-io.)
Let me know if you face any problem with this.

Please sign in to comment.