Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try to fix numpy dev0 install in nightly wheels #4383

Closed
wants to merge 7 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/gh-ci-cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ on:
schedule:
# 3 am Tuesdays and Fridays
- cron: "0 3 * * 2,5"
pull_request:
branches:
- develop

concurrency:
# Probably overly cautious group naming.
Expand Down Expand Up @@ -52,11 +55,16 @@ jobs:
with:
micromamba: true
full-deps: true
numpy: ""
scipy: ""
networkx: ""
matplotlib: ""

# overwrite installs by picking up nightly wheels
# Try to pick up the nightly wheels
# Note: enforce >=2.0.0-dev0 for numpy to make sure we pick up the latest version
- name: nightly_wheels
run: |
pip install --pre -U -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple scipy numpy networkx matplotlib pandas
pip install --pre -U --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple scipy "numpy>=2.0.0-dev0" networkx matplotlib pandas

- name: list_deps
run: |
Expand Down
Loading