We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As in the title.
python -m venv test cd test . bin/activate pip install --verbose git+https://github.com/cython/cython pip install cysignals pip install setuptools # https://github.com/cython/cython/issues/5976 cat << 'EOF' > a.pyx # cython: preliminary_late_includes_cy28=True from cysignals.signals cimport sig_check EOF cythonize -X preliminary_late_includes_cy28=True -i a.pyx # successful rm -r a.c build/ a.cpython-311-x86_64-linux-gnu.so a.c.dep cythonize -i a.pyx # error cythonize -X preliminary_late_includes_cy28=True -i a.pyx # now error, need to clean temporary files (see below) rm -r a.c build/ a.cpython-311-x86_64-linux-gnu.so a.c.dep cythonize -X preliminary_late_includes_cy28=True -i a.pyx # successful again
The cleaning of temporary file is not necessary, Cython does that automatically.
Linux
3.12
latest master
Though the other bug is why setting the compiler directive from the file header doesn't work.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
As in the title.
Code to reproduce the behaviour:
Expected behaviour
The cleaning of temporary file is not necessary, Cython does that automatically.
OS
Linux
Python version
3.12
Cython version
latest master
Additional context
Though the other bug is why setting the compiler directive from the file header doesn't work.
The text was updated successfully, but these errors were encountered: