Skip to content

Commit 31a1c00

Browse files
author
Edouard Benauw
authored
Pin pyjwt version (PyGithub#1797)
* Pin pyjwt version Pyjwt version is not fixed, which can cause syntax error for user since the release of breaking changes from pyjwt (https://pypi.org/project/PyJWT/#history) * Update setup.py Fixes PyGithub#1796
1 parent f299699 commit 31a1c00

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
requests>=2.14.0
2-
pyjwt
2+
pyjwt<2.0
33
sphinx<3
44
sphinx-rtd-theme<0.6
55
Deprecated

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"Topic :: Software Development",
9999
],
100100
python_requires=">=3.6",
101-
install_requires=["deprecated", "pyjwt", "requests>=2.14.0"],
101+
install_requires=["deprecated", "pyjwt<2.0", "requests>=2.14.0"],
102102
extras_require={"integrations": ["cryptography"]},
103103
tests_require=["cryptography", "httpretty>=1.0.3"],
104104
)

0 commit comments

Comments
 (0)