We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 475cbd5 commit 730514aCopy full SHA for 730514a
.github/workflows/tests.yml
@@ -222,6 +222,13 @@ jobs:
222
PRE="--pre"
223
fi
224
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
+
232
# Install dependencies from PyPI.
233
# Preinstall build requirements to enable no-build-isolation builds.
234
python -m pip install --upgrade $PRE \
0 commit comments