Skip to content

Commit

Permalink
Update syntax for installing from git repos to latest recommended (#12)
Browse files Browse the repository at this point in the history
* Update syntax for installing from git repos to latest recommended, which fixes the sunpy build

* Run in PRs
  • Loading branch information
astrofrog authored Nov 13, 2023
1 parent 9f4c984 commit 2d37b5f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: astropy_rc_basic

on:
workflow_dispatch:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -27,5 +28,4 @@ jobs:
- linux: py311-reproject
- linux: py311-specreduce
- linux: py311-specutils
# FIXME: Chained dependencies in sunpy/setup.cfg not working here.
#- linux: py311-sunpy
- linux: py311-sunpy
22 changes: 11 additions & 11 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ pip_pre = true
# side effects and make sure all test suites pass with all packages
deps =
astropy[all,test]
asdf_astropy,all: git+https://github.com/astropy/asdf-astropy.git#egg=asdf_astropy[test]
astropy_healpix,all: git+https://github.com/astropy/astropy-healpix.git#egg=astropy_healpix[test]
astroquery,all: git+https://github.com/astropy/astroquery.git#egg=astroquery[test,all]
asdf_astropy,all: asdf_astropy[test] @ git+https://github.com/astropy/asdf-astropy.git
astropy_healpix,all: astropy_healpix[test] @ git+https://github.com/astropy/astropy-healpix.git
astroquery,all: astroquery[test,all] @ git+https://github.com/astropy/astroquery.git
ccdproc,all: psutil
ccdproc,all: git+https://github.com/astropy/ccdproc.git#egg=ccdproc[test,all]
photutils,all: git+https://github.com/astropy/photutils.git#egg=photutils[test,all]
regions,all: git+https://github.com/astropy/regions.git#egg=regions[test,all]
reproject,all: git+https://github.com/astropy/reproject.git#egg=reproject[test,all]
specreduce,all: git+https://github.com/astropy/specreduce.git#egg=specreduce[test]
specutils,all: git+https://github.com/astropy/specutils.git#egg=specutils[all,test]
sunpy,all: git+https://github.com/sunpy/sunpy.git#egg=sunpy[tests,all]
ccdproc,all: ccdproc[test,all] @ git+https://github.com/astropy/ccdproc.git
photutils,all: photutils[test,all] @ git+https://github.com/astropy/photutils.git
regions,all: regions[test,all] @ git+https://github.com/astropy/regions.git
reproject,all: reproject[test,all] @ git+https://github.com/astropy/reproject.git
specreduce,all: specreduce[test] @ git+https://github.com/astropy/specreduce.git
specutils,all: specutils[all,test] @ git+https://github.com/astropy/specutils.git#egg=
sunpy,all: sunpy[tests,all] @ git+https://github.com/sunpy/sunpy.git

skip_install = true

Expand All @@ -49,4 +49,4 @@ commands =
reproject,all: pytest --pyargs reproject
specreduce,all: pytest --pyargs specreduce
specutils,all: pytest --pyargs specutils
sunpy,all: pytest --pyargs sunpy
sunpy,all: pytest --pyargs sunpy --doctest-ignore-import-errors

0 comments on commit 2d37b5f

Please sign in to comment.