Skip to content

Commit

Permalink
install for free threading
Browse files Browse the repository at this point in the history
  • Loading branch information
minrk committed Aug 2, 2024
1 parent 3ef57e1 commit 4d90fa5
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,11 @@ jobs:
run: |
pip install --upgrade pip wheel
pip install -r test-requirements.txt
- name: install free-threading dependencies
if: ${{ !matrix.free_threading }}
run: |
pip install --upgrade --pre -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple cython
- name: remove tornado
if: matrix.tornado == 'none'
Expand Down Expand Up @@ -192,12 +197,18 @@ jobs:
echo ZMQ_DRAFT_API=1 >> "$GITHUB_ENV"
- name: build pyzmq
if: ${{ !matrix.free_threading }}
run: |
pip install -v -e .
- name: build pyzmq (free threading)
if: ${{ matrix.free_threading }}
run: |
pip install -v --no-build-isolation .
- name: import zmq
run: |
python -c "import zmq"
python -I -c "import zmq"
- name: run tests
run: |
Expand Down

0 comments on commit 4d90fa5

Please sign in to comment.