Commit e4b6155
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
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
0 commit comments