Skip to content

Commit 6a359b3

Browse files
authored
Merge pull request #547 from cshuaimin/gevent
upgrade gevent version to 22 to support python3.11
2 parents dcc0445 + 5279f1f commit 6a359b3

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

Pipfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ qiniu = ">=7.1.4,<7.2.4"
2222
"urllib3" = ">=1.24.3,<=1.25.3"
2323
requests = ">=2.20.0,<=2.22.0"
2424
Werkzeug = ">=0.11.11,<1.0.0"
25-
gevent = ">=1.0.2,<2.0.0"
25+
gevent = ">=22.10.2,<23.0.0"
2626
typing = { version = "*", markers = "python_version < '3.5.0'" }
2727
pyopenssl = { version = "*", markers = "python_version < '2.7.9'" }
2828
idna = { version = "*", markers = "python_version < '2.7.9'" }
29+
markupsafe = "<=2.0.1"

changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [2.9.12] - 2022-11-24
2+
3+
## Fixed
4+
5+
- Upgrade gevent version to support Python 3.11
6+
17
## [2.9.11] - 2022-06-23
28

39
## Fixed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ qiniu>=7.3.1
66
requests>=2.25.1
77
Werkzeug>=0.16.0,<2.0.0
88
secure-cookie>=0.1.0,<1.0.0
9-
gevent>=21.1.0,<22.0.0
9+
gevent>=22.10.2,<23.0.0
1010
typing; python_version < '3.5'
1111
markupsafe<=2.0.1

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@
1414
'requests>=2.25.1',
1515
'Werkzeug>=0.16.0,<2.0.0',
1616
'secure-cookie>=0.1.0,<1.0.0',
17-
'gevent>=21.1.0,<22.0.0',
18-
"typing; python_version < '3.5'"
17+
'gevent>=22.10.2,<23.0.0',
18+
"typing; python_version < '3.5'",
19+
'markupsafe<=2.0.1',
1920
]
2021

2122
setup(
2223
name='leancloud',
23-
version='2.9.11',
24+
version='2.9.12',
2425
description='LeanCloud Python SDK',
2526
url='https://leancloud.cn/',
2627
author='asaka',

0 commit comments

Comments
 (0)