Skip to content

Commit 393c65e

Browse files
aberresArmin Berres
authored andcommitted
Allow newer PyJWT versions
Backported from the master branch (redis#3636). Co-authored-by: Armin Berres <[email protected]>
1 parent 653d9ef commit 393c65e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
* Close Unix sockets if the connection attempt fails. This prevents `ResourceWarning`s. (#3314)
6868
* Close SSL sockets if the connection attempt fails, or if validations fail. (#3317)
6969
* Eliminate mutable default arguments in the `redis.commands.core.Script` class. (#3332)
70+
* Allow newer versions of PyJWT as dependency. (#3630)
7071

7172
* 4.1.3 (Feb 8, 2022)
7273
* Fix flushdb and flushall (#1926)

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
async-timeout>=4.0.3
2-
PyJWT~=2.9.0
2+
PyJWT>=2.9.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
python_requires=">=3.8",
3939
install_requires=[
4040
'async-timeout>=4.0.3; python_full_version<"3.11.3"',
41-
"PyJWT~=2.9.0",
41+
"PyJWT>=2.9.0",
4242
],
4343
classifiers=[
4444
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)