You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to bump the allowed versions of Cython to 0.29.36?
Collecting lark-cython>=0.0.14 (from mappyfile==1.0.2)
Downloading lark-cython-0.0.15.tar.gz (250 kB)
Installing build dependencies: started
Installing build dependencies: finished with status 'done'
Getting requirements to build wheel: started
Getting requirements to build wheel: finished with status 'error'
error: subprocess-exited-with-error
...
× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> [52 lines of output]
Traceback (most recent call last):
File "/opt/hostedtoolcache/Python/3.13.0/x64/lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/_in_process/...
File "/tmp/pip-build-env-dcu_z99v/overlay/lib/python3.13/site-packages/Cython/Tempita/__init__.py", line 4, in <module>
from ._tempita import *
File "/tmp/pip-build-env-dcu_z99v/overlay/lib/python3.13/site-packages/Cython/Tempita/_tempita.py", line 36, in <module>
import cgi
ModuleNotFoundError: No module named 'cgi'
[end of output]
The text was updated successfully, but these errors were encountered:
lark_cython is tied to specific versions of Cython (<0.29.35):
lark_cython/setup.py
Line 41 in d211445
When testing with Python 3.13 the
cgi
module has been removed, and is removed from Cython code too: cython/cython#5449In older versions of Cython (prior to the patch in 0.29.35) this now throws an error. See for example the log at https://github.com/geographika/mappyfile/actions/runs/11535196112/job/32110014487
Is it possible to bump the allowed versions of Cython to 0.29.36?
The text was updated successfully, but these errors were encountered: