Skip to content

Commit

Permalink
Merge pull request #547 from cshuaimin/gevent
Browse files Browse the repository at this point in the history
upgrade gevent version to 22 to support python3.11
  • Loading branch information
cshuaimin authored Nov 24, 2022
2 parents dcc0445 + 5279f1f commit 6a359b3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ qiniu = ">=7.1.4,<7.2.4"
"urllib3" = ">=1.24.3,<=1.25.3"
requests = ">=2.20.0,<=2.22.0"
Werkzeug = ">=0.11.11,<1.0.0"
gevent = ">=1.0.2,<2.0.0"
gevent = ">=22.10.2,<23.0.0"
typing = { version = "*", markers = "python_version < '3.5.0'" }
pyopenssl = { version = "*", markers = "python_version < '2.7.9'" }
idna = { version = "*", markers = "python_version < '2.7.9'" }
markupsafe = "<=2.0.1"
6 changes: 6 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [2.9.12] - 2022-11-24

## Fixed

- Upgrade gevent version to support Python 3.11

## [2.9.11] - 2022-06-23

## Fixed
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ qiniu>=7.3.1
requests>=2.25.1
Werkzeug>=0.16.0,<2.0.0
secure-cookie>=0.1.0,<1.0.0
gevent>=21.1.0,<22.0.0
gevent>=22.10.2,<23.0.0
typing; python_version < '3.5'
markupsafe<=2.0.1
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@
'requests>=2.25.1',
'Werkzeug>=0.16.0,<2.0.0',
'secure-cookie>=0.1.0,<1.0.0',
'gevent>=21.1.0,<22.0.0',
"typing; python_version < '3.5'"
'gevent>=22.10.2,<23.0.0',
"typing; python_version < '3.5'",
'markupsafe<=2.0.1',
]

setup(
name='leancloud',
version='2.9.11',
version='2.9.12',
description='LeanCloud Python SDK',
url='https://leancloud.cn/',
author='asaka',
Expand Down

0 comments on commit 6a359b3

Please sign in to comment.