File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 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 :
You can’t perform that action at this time.
0 commit comments