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 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 :
You can’t perform that action at this time.
0 commit comments