File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 67
67
* Close Unix sockets if the connection attempt fails. This prevents `ResourceWarning`s. (#3314)
68
68
* Close SSL sockets if the connection attempt fails, or if validations fail. (#3317)
69
69
* Eliminate mutable default arguments in the `redis.commands.core.Script` class. (#3332)
70
+ * Allow newer versions of PyJWT as dependency. (#3630)
70
71
71
72
* 4.1.3 (Feb 8, 2022)
72
73
* Fix flushdb and flushall (#1926)
Original file line number Diff line number Diff line change 1
1
async-timeout >= 4.0.3
2
- PyJWT ~ =2.9.0
2
+ PyJWT > =2.9.0
Original file line number Diff line number Diff line change 38
38
python_requires = ">=3.8" ,
39
39
install_requires = [
40
40
'async-timeout>=4.0.3; python_full_version<"3.11.3"' ,
41
- "PyJWT~ =2.9.0" ,
41
+ "PyJWT> =2.9.0" ,
42
42
],
43
43
classifiers = [
44
44
"Development Status :: 5 - Production/Stable" ,
You can’t perform that action at this time.
0 commit comments