Skip to content

Commit

Permalink
ci: Use scientific-python-nightly-wheels for dependency nightlies (#430)
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
matthewfeickert authored and jonas-eschle committed Apr 22, 2024
1 parent 7894d19 commit 8f1dbb7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/head-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,12 @@ jobs:
python -m pip install --upgrade pip setuptools wheel
python -m pip install pytest-github-actions-annotate-failures
python -m pip --no-cache-dir --quiet install --upgrade .[test]
python -m pip install --pre --upgrade --extra-index-url https://pypi.anaconda.org/scipy-wheels-nightly/simple matplotlib
python -m pip install \
--upgrade \
--pre \
--index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \
--extra-index-url https://pypi.org/simple/ \
matplotlib
- name: List installed Python packages
run: python -m pip list
Expand Down

0 comments on commit 8f1dbb7

Please sign in to comment.