Skip to content

Commit d0f0b66

Browse files
committed
Refine 3.14 restrictions in test.yml
1 parent f70e46c commit d0f0b66

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
@@ -81,7 +81,7 @@ jobs:
8181
architecture: ${{ matrix.arch }}
8282

8383
- name: Install Rust
84-
if: matrix.arch != 'x86' && matrix.py != '3.14.0-rc.2'
84+
if: matrix.arch != 'x86' && (matrix.py != '3.14' || matrix.py != '3.14t')
8585
uses: dtolnay/rust-toolchain@b3b07ba8b418998c39fb20f53e8b695cdcc8de1b # v1
8686
with:
8787
toolchain: stable
@@ -98,14 +98,14 @@ jobs:
9898
python -m pip install --require-hashes -r ci/requirements.txt
9999
100100
- name: Build (Rust)
101-
if: matrix.arch != 'x86' && matrix.py != '3.14.0-rc.2'
101+
if: matrix.arch != 'x86' && (matrix.py != '3.14' || matrix.py != '3.14t')
102102
env:
103103
PIP_CONSTRAINT: 'ci/constraints.txt'
104104
run: |
105105
python -m pip -v install --config-settings='--build-option=--rust-backend' -e .
106106
107107
- name: Build (No Rust)
108-
if: matrix.arch == 'x86' || matrix.py == '3.14.0-rc.2'
108+
if: matrix.arch == 'x86' || matrix.py == '3.14' || matrix.py == '3.14t'
109109
env:
110110
PIP_CONSTRAINT: 'ci/constraints.txt'
111111
run: |
@@ -122,7 +122,7 @@ jobs:
122122
pytest --numprocesses=auto --hypothesis-profile=${HYPOTHESIS_PROFILE} -v tests/
123123
124124
- name: Test Rust Backend
125-
if: matrix.arch != 'x86' && matrix.py != '3.14.0-rc.2'
125+
if: matrix.arch != 'x86' && (matrix.py != '3.14' || matrix.py != '3.14t' )
126126
# Rust backend is currently experimental. So ignore failures in it.
127127
continue-on-error: true
128128
env:

0 commit comments

Comments
 (0)