Skip to content

Commit

Permalink
fix: 📌 pin requestes dependency to 2.26.0 and lower
Browse files Browse the repository at this point in the history
There is a change with requests 2.27.0 and later that makes this library incompatible
  • Loading branch information
Andreas Hubert authored and peshay committed Jan 30, 2022
1 parent f6c501b commit f5b39cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
urllib3==1.26.4
requests
urllib3
requests<=2.26.0
future
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
setup(name='tpm',
version='4.2',
py_modules=['tpm'],
install_requires=['requests', 'future', 'urllib3==1.26.4'],
install_requires=['requests<=2.26.0', 'future', 'urllib3'],
description='Provides functions to work with TeamPasswordManager API.',
url='https://github.com/peshay/tpm',
author='Andreas Hubert',
Expand Down

0 comments on commit f5b39cc

Please sign in to comment.