Skip to content

Commit 3b42d0c

Browse files
requirements: bump gevent to 24.11.2
Bump `gevent` version to 24.11.2 to avoid the following issue with installation in a Python 3.12 environment: Error compiling Cython file: ------------------------------------------------------------ ... cdef tuple integer_types if sys.version_info[0] >= 3: integer_types = int, else: integer_types = (int, long) ^ ------------------------------------------------------------ src/gevent/libev/corecext.pyx:60:26: undeclared name not builtin: long Version `24.*` doesn't support Python 3.7, so continue using `22.*` version for Python 3.7.
1 parent 270e24e commit 3b42d0c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# Pin pyyaml to 5.3.1 until yaml/pyyaml#724 is fixed.
22
PyYAML==5.3.1
3-
gevent==22.10.2
3+
gevent==22.10.2; python_version <= '3.7'
4+
gevent==24.11.1; python_version > '3.7'

0 commit comments

Comments
 (0)