Skip to content

Commit 322e294

Browse files
CI: Don't bother testing with numpy main until numpy 2.0 support is implemented.
1 parent 50ad876 commit 322e294

File tree

1 file changed

+32
-32
lines changed

1 file changed

+32
-32
lines changed

.github/workflows/tests.yml

+32-32
Original file line numberDiff line numberDiff line change
@@ -107,38 +107,38 @@ jobs:
107107
run: |
108108
pytest --pyargs ufunclab
109109
110-
main-numpy:
111-
strategy:
112-
matrix:
113-
python-version: ['3.10', '3.11', '3.12']
114-
os: [ubuntu-latest]
115-
116-
runs-on: ${{ matrix.os }}
117-
118-
steps:
119-
- uses: actions/checkout@v4
120-
- name: Set up Python
121-
uses: actions/setup-python@v4
122-
with:
123-
python-version: ${{ matrix.python-version }}
124-
- name: Install dependencies
125-
run: |
126-
sudo apt-get install libopenblas-dev
127-
python -m pip install --upgrade pip wheel
128-
python -m pip install --upgrade setuptools==59.2.0
129-
python -m pip install ninja meson-python toml pytest
130-
pushd .
131-
cd ..
132-
git clone --shallow-submodules --recurse-submodules https://github.com/numpy/numpy.git
133-
cd numpy
134-
python -m pip install .
135-
popd
136-
- name: Install ufunclab
137-
run: |
138-
python -m pip install --no-build-isolation .
139-
- name: Test with pytest
140-
run: |
141-
pytest --pyargs ufunclab
110+
# main-numpy:
111+
# strategy:
112+
# matrix:
113+
# python-version: ['3.10', '3.11', '3.12']
114+
# os: [ubuntu-latest]
115+
#
116+
# runs-on: ${{ matrix.os }}
117+
#
118+
# steps:
119+
# - uses: actions/checkout@v4
120+
# - name: Set up Python
121+
# uses: actions/setup-python@v4
122+
# with:
123+
# python-version: ${{ matrix.python-version }}
124+
# - name: Install dependencies
125+
# run: |
126+
# sudo apt-get install libopenblas-dev
127+
# python -m pip install --upgrade pip wheel
128+
# python -m pip install --upgrade setuptools==59.2.0
129+
# python -m pip install ninja meson-python toml pytest
130+
# pushd .
131+
# cd ..
132+
# git clone --shallow-submodules --recurse-submodules https://github.com/numpy/numpy.git
133+
# cd numpy
134+
# python -m pip install .
135+
# popd
136+
# - name: Install ufunclab
137+
# run: |
138+
# python -m pip install --no-build-isolation .
139+
# - name: Test with pytest
140+
# run: |
141+
# pytest --pyargs ufunclab
142142

143143
windows-msvc:
144144

0 commit comments

Comments
 (0)