We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 653d9ef commit c4c833dCopy full SHA for c4c833d
CHANGES
@@ -67,6 +67,7 @@
67
* Close Unix sockets if the connection attempt fails. This prevents `ResourceWarning`s. (#3314)
68
* Close SSL sockets if the connection attempt fails, or if validations fail. (#3317)
69
* Eliminate mutable default arguments in the `redis.commands.core.Script` class. (#3332)
70
+ * Allow newer versions of PyJWT as dependency. (#3630)
71
72
* 4.1.3 (Feb 8, 2022)
73
* Fix flushdb and flushall (#1926)
setup.py
@@ -38,7 +38,7 @@
38
python_requires=">=3.8",
39
install_requires=[
40
'async-timeout>=4.0.3; python_full_version<"3.11.3"',
41
- "PyJWT~=2.9.0",
+ "PyJWT>=2.9.0",
42
],
43
classifiers=[
44
"Development Status :: 5 - Production/Stable",
0 commit comments