Skip to content

Commit

Permalink
Bug/pyjwt dependency (#610)
Browse files Browse the repository at this point in the history
* Update setup.py

Update pyjwt dependency

* Update setup.py

include cryptography for requirement for pyjwt

* Update setup.py

include pyjwt[crypto] in install requirements

* Update setup.py

remove [crypto] from pyjwt[crypto] in install_requires as causes travis-ci failure to build
  • Loading branch information
jon-wobken committed Jan 18, 2023
1 parent fa3955a commit 6e0ab81
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -28,8 +28,9 @@
},
install_requires = [
'requests>=2.22.0',
'pyjwt',
'zeep'
'cryptography',
'zeep',
'pyjwt'
],
tests_require = [
'pytest',
Expand Down

0 comments on commit 6e0ab81

Please sign in to comment.