Skip to content

Commit 79e68e6

Browse files
committed
Remove numpy-version in the CI matrix
1 parent 375c5a5 commit 79e68e6

File tree

1 file changed

+4
-18
lines changed

1 file changed

+4
-18
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- uses: pre-commit/[email protected]
6666

6767
test:
68-
name: "${{ matrix.os }} test py${{ matrix.python-version }} numpy${{ matrix.numpy-version }} : fast-compile ${{ matrix.fast-compile }} : float32 ${{ matrix.float32 }} : ${{ matrix.part }}"
68+
name: "${{ matrix.os }} test py${{ matrix.python-version }} : fast-compile ${{ matrix.fast-compile }} : float32 ${{ matrix.float32 }} : ${{ matrix.part }}"
6969
needs:
7070
- changes
7171
- style
@@ -76,7 +76,6 @@ jobs:
7676
matrix:
7777
os: ["ubuntu-latest"]
7878
python-version: ["3.11", "3.13"]
79-
numpy-version: ["~=1.26.0", ">=2.0"]
8079
fast-compile: [0, 1]
8180
float32: [0, 1]
8281
install-numba: [0]
@@ -98,17 +97,13 @@ jobs:
9897
float32: 1
9998
- fast-compile: 1
10099
float32: 1
101-
- numpy-version: "~=1.26.0"
102-
fast-compile: 1
103-
- numpy-version: "~=1.26.0"
104-
float32: 1
105-
- numpy-version: "~=1.26.0"
106-
python-version: "3.13"
100+
- fast-compile: 1
101+
- float32: 1
102+
- python-version: "3.13"
107103
include:
108104
- os: "ubuntu-latest"
109105
part: "--doctest-modules pytensor --ignore=pytensor/misc/check_duplicate_key.py --ignore=pytensor/link --ignore=pytensor/ipython.py"
110106
python-version: "3.12"
111-
numpy-version: ">=2.0"
112107
fast-compile: 0
113108
float32: 0
114109
install-numba: 0
@@ -118,55 +113,47 @@ jobs:
118113
- install-numba: 1
119114
os: "ubuntu-latest"
120115
python-version: "3.11"
121-
numpy-version: "~=2.1.0"
122116
fast-compile: 0
123117
float32: 0
124118
part: "tests/link/numba --ignore=tests/link/numba/test_slinalg.py"
125119
- install-numba: 1
126120
os: "ubuntu-latest"
127121
python-version: "3.13"
128-
numpy-version: "~=2.1.0"
129122
fast-compile: 0
130123
float32: 0
131124
part: "tests/link/numba --ignore=tests/link/numba/test_slinalg.py"
132125
- install-numba: 1
133126
os: "ubuntu-latest"
134127
python-version: "3.13"
135-
numpy-version: "~=2.1.0"
136128
fast-compile: 0
137129
float32: 0
138130
part: "tests/link/numba/test_slinalg.py"
139131
- install-jax: 1
140132
os: "ubuntu-latest"
141133
python-version: "3.11"
142-
numpy-version: ">=2.0"
143134
fast-compile: 0
144135
float32: 0
145136
part: "tests/link/jax"
146137
- install-jax: 1
147138
os: "ubuntu-latest"
148139
python-version: "3.13"
149-
numpy-version: ">=2.0"
150140
fast-compile: 0
151141
float32: 0
152142
part: "tests/link/jax"
153143
- install-torch: 1
154144
os: "ubuntu-latest"
155145
python-version: "3.11"
156-
numpy-version: ">=2.0"
157146
fast-compile: 0
158147
float32: 0
159148
part: "tests/link/pytorch"
160149
- install-xarray: 1
161150
os: "ubuntu-latest"
162151
python-version: "3.13"
163-
numpy-version: ">=2.0"
164152
fast-compile: 0
165153
float32: 0
166154
part: "tests/xtensor"
167155
- os: macos-15
168156
python-version: "3.13"
169-
numpy-version: ">=2.0"
170157
fast-compile: 0
171158
float32: 0
172159
install-numba: 0
@@ -222,7 +209,6 @@ jobs:
222209
fi
223210
env:
224211
PYTHON_VERSION: ${{ matrix.python-version }}
225-
NUMPY_VERSION: ${{ matrix.numpy-version }}
226212
INSTALL_NUMBA: ${{ matrix.install-numba }}
227213
INSTALL_JAX: ${{ matrix.install-jax }}
228214
INSTALL_TORCH: ${{ matrix.install-torch}}

0 commit comments

Comments
 (0)