Skip to content

Commit e4b6155

Browse files
committed
test-requirements.txt: remove pinning from cython
since we want to support python 3.12, we need to remove this pinning, cause those versions are casueing the cython related unittets to fail: ``` ImportError while importing test module '/project/tests/unit/cython/test_bytesio.py'. Hint: make sure your test modules/packages have valid Python names. Traceback: /opt/python/cp312-cp312/lib/python3.12/importlib/__init__.py:90: in import_module return _bootstrap._gcd_import(name[level:], package, level) /project/tests/unit/cython/test_bytesio.py:16: in <module> bytesio_testhelper = cyimport('tests.unit.cython.bytesio_testhelper') /project/tests/unit/cython/utils.py:29: in cyimport import pyximport ../venv/lib/python3.12/site-packages/pyximport/__init__.py:1: in <module> from .pyximport import * ../venv/lib/python3.12/site-packages/pyximport/pyximport.py:51: in <module> import imp E ModuleNotFoundError: No module named 'imp' ```
1 parent 5dafcb5 commit e4b6155

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ twisted[tls]==19.2.1; python_version < '3.5'
1010
gevent>=1.0; platform_machine != 'i686' and platform_machine != 'win32'
1111
gevent==20.5.0; platform_machine == 'i686' or platform_machine == 'win32'
1212
eventlet>=0.33.3
13-
cython>=0.20,<0.30
13+
cython
1414
packaging
1515
futurist; python_version >= '3.7'
1616
asynctest; python_version >= '3.5'

0 commit comments

Comments
 (0)