Skip to content

Commit 39c39a2

Browse files
authored
Upgrade cryptography to version 3 (#620)
1 parent 34d917a commit 39c39a2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,6 @@ target/
8080

8181
# Misc
8282
tokens.pk
83+
84+
#pyenv
85+
.python-version

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def main():
6363
'wrapt>=1.10.1',
6464
]
6565
redis_requires = ['redis>=2.10.3']
66-
jwt_requires = ['pyjwt>=1.3.0', 'cryptography>=0.9.2']
66+
jwt_requires = ['pyjwt>=1.3.0', 'cryptography>=3']
6767
extra_requires = defaultdict(list)
6868
extra_requires.update({'jwt': jwt_requires, 'redis': redis_requires, 'all': jwt_requires + redis_requires})
6969
conditional_dependencies = {

0 commit comments

Comments
 (0)