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

TST: use astropy and h5py nightly builds for bleeding edge CI #211

Merged
merged 1 commit into from
Mar 14, 2024
Merged
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
15 changes: 11 additions & 4 deletions .github/workflows/bleeding-edge.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: CI (bleeding edge)
# goals: check stability against
# - dev version of numpy, matplotlib and astropy
# - dev version of numpy, matplotlib, scipy, h5py and astropy
# - building with future pip default options

on:
Expand Down Expand Up @@ -36,15 +36,22 @@ jobs:
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools wheel
python -m pip install --pre --only-binary ":all:" \
numpy matplotlib scipy \
--extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple
python -m pip install git+https://github.com/astropy/astropy.git
numpy matplotlib scipy h5py \
--extra-index-url \
https://pypi.anaconda.org/scientific-python-nightly-wheels/simple

python -m pip install --pre --only-binary ":all:" \
astropy \
--extra-index-url https://pypi.anaconda.org/astropy/simple/ \
--extra-index-url https://pypi.anaconda.org/liberfa/simple

- name: Build amical
run: |
python -m pip install --requirement requirements/tests.txt --pre
python -m pip install --no-build-isolation .

- run: python -m pip list

- name: Run tests
run: |
pytest --color=yes
Loading