8000 ci: Use scientific-python-nightly-wheels for dependency nightlies (#430) · scikit-hep/mplhep@9b47e92 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9b47e92

Browse files
ci: Use scientific-python-nightly-wheels for dependency nightlies (#430)
* Nightly wheels for the Scientific Python community have migrated from the Anaconda Cloud https://anaconda.org/scipy-wheels-nightly/ package index to https://anaconda.org/scientific-python-nightly-wheels. - c.f. https://scientific-python.org/specs/spec-0004/ - c.f. scientific-python/specs#182 - c.f. matplotlib/matplotlib#25950 * For matplotlib use --index-url of scientific-python-nightly-wheels and use --extra-index-url of public PyPI (https://pypi.org/) as some of matplotlib's dependencies aren't on scientific-python-nightly-wheels.
1 parent 2aa455e commit 9b47e92

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/head-dependencies.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,12 @@ jobs:
7676
python -m pip install --upgrade pip setuptools wheel
7777
python -m pip install pytest-github-actions-annotate-failures
7878
python -m pip --no-cache-dir --quiet install --upgrade .[test]
79-
python -m pip install --pre --upgrade --extra-index-url https://pypi.anaconda.org/scipy-wheels-nightly/simple matplotlib
79+
python -m pip install \
80+
--upgrade \
81+
--pre \
82+
--index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \
83+
--extra-index-url https://pypi.org/simple/ \
84+
matplotlib
8085
8186
- name: List installed Python packages
8287
run: python -m pip list

0 commit comments

Comments
 (0)
0