Skip to content

Commit

Permalink
Pin dependencies versions in setup.py rather than requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
ppawlak committed Jan 9, 2021
1 parent 0c621cc commit 8de43ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 1 addition & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
requests==2.20.1
PyJWT==1.6.4
cryptography==2.6.1
.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
VERSION = None

REQUIRED = [
'requests', 'PyJWT', 'cryptography'
'requests==2.20.1',
'PyJWT==1.6.4',
'cryptography==2.6.1',
]

EXTRAS = {
Expand Down

0 comments on commit 8de43ea

Please sign in to comment.