Skip to content

Commit 1cab243

Browse files
committed
ci: enable Rust on Python 3.14
Now that we upgraded to PyO3 0.25 we can have nice things.
1 parent 41eb47d commit 1cab243

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
allow-prereleases: true
8181

8282
- name: Install Rust
83-
if: matrix.arch != 'x86' && matrix.py != '3.14'
83+
if: matrix.arch != 'x86'
8484
uses: dtolnay/rust-toolchain@b3b07ba8b418998c39fb20f53e8b695cdcc8de1b # v1
8585
with:
8686
toolchain: stable
@@ -97,14 +97,14 @@ jobs:
9797
python -m pip install --require-hashes -r ci/requirements.txt
9898
9999
- name: Build (Rust)
100-
if: matrix.arch != 'x86' && matrix.py != '3.14'
100+
if: matrix.arch != 'x86'
101101
env:
102102
PIP_CONSTRAINT: 'ci/constraints.txt'
103103
run: |
104104
python -m pip -v install --config-settings='--build-option=--rust-backend' -e .
105105
106106
- name: Build (No Rust)
107-
if: matrix.arch == 'x86' || matrix.py == '3.14'
107+
if: matrix.arch == 'x86'
108108
env:
109109
PIP_CONSTRAINT: 'ci/constraints.txt'
110110
run: |
@@ -121,7 +121,7 @@ jobs:
121121
pytest --numprocesses=auto --hypothesis-profile=${HYPOTHESIS_PROFILE} -v tests/
122122
123123
- name: Test Rust Backend
124-
if: matrix.arch != 'x86' && matrix.py != '3.14'
124+
if: matrix.arch != 'x86'
125125
# Rust backend is currently experimental. So ignore failures in it.
126126
continue-on-error: true
127127
env:

0 commit comments

Comments
 (0)