Skip to content

Commit

Permalink
Try to fix numpy dev0 install in nightly wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
IAlibay authored Dec 23, 2023
1 parent edda942 commit 6a2cf09
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 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 @@ -47,16 +50,20 @@ jobs:
- conda-forge
- bioconda
# Try to pick up nightly wheels first
- name: nightly_wheels
run: |
pip install --pre -U -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple scipy numpy networkx matplotlib pandas
- name: install_deps
uses: ./.github/actions/setup-deps
with:
micromamba: true
full-deps: true

# overwrite installs by picking up nightly wheels
- name: nightly_wheels
run: |
pip install --pre -U -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple scipy numpy networkx matplotlib pandas
numpy: ""
scipy: ""
networkx: ""
matplotlib: ""

- name: list_deps
run: |
Expand Down

0 comments on commit 6a2cf09

Please sign in to comment.