Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6f03f04

Browse files
committedAug 21, 2024·
Use Cython master for free-threaded build
1 parent 3e5a696 commit 6f03f04

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎.github/workflows/buildwheel.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,10 @@ jobs:
234234
python -c "import sys; print(sys._is_gil_enabled())"
235235
- run: sudo apt-get update
236236
- run: sudo apt-get install libflint-dev
237-
- run: pip install .
237+
# Need Cython master until 3.1 is released
238+
- run: pip install git+https://github.com/cython/cython.git@master
239+
- run: pip install -r requirements-dev.txt
240+
- run: pip install --no-build-isolation .
238241
- run: python -m flint.test --verbose
239242

240243
# Run SymPy test suite against python-flint master

0 commit comments

Comments
 (0)
Please sign in to comment.