Skip to content

Commit 730514a

Browse files
committed
Fetch numpy and contourpy from nightly for 3.13
They don't yet have wheels on PyPI for this Python version.
1 parent 475cbd5 commit 730514a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,13 @@ jobs:
222222
PRE="--pre"
223223
fi
224224
225+
# These don't have wheels on PyPI yet, but we can try the nightly wheels for now.
226+
if [[ "${{ matrix.python-version }}" == '3.13' ]]; then
227+
python -m pip install \
228+
--index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \
229+
--upgrade --only-binary=:all: contourpy numpy
230+
fi
231+
225232
# Install dependencies from PyPI.
226233
# Preinstall build requirements to enable no-build-isolation builds.
227234
python -m pip install --upgrade $PRE \

0 commit comments

Comments
 (0)