Skip to content

Commit 2d37b5f

Browse files
authored
Update syntax for installing from git repos to latest recommended (#12)
* Update syntax for installing from git repos to latest recommended, which fixes the sunpy build * Run in PRs
1 parent 9f4c984 commit 2d37b5f

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/integration_testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: astropy_rc_basic
22

33
on:
44
workflow_dispatch:
5+
pull_request:
56

67
concurrency:
78
group: ${{ github.workflow }}-${{ github.ref }}
@@ -27,5 +28,4 @@ jobs:
2728
- linux: py311-reproject
2829
- linux: py311-specreduce
2930
- linux: py311-specutils
30-
# FIXME: Chained dependencies in sunpy/setup.cfg not working here.
31-
#- linux: py311-sunpy
31+
- linux: py311-sunpy

tox.ini

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ pip_pre = true
2424
# side effects and make sure all test suites pass with all packages
2525
deps =
2626
astropy[all,test]
27-
asdf_astropy,all: git+https://github.com/astropy/asdf-astropy.git#egg=asdf_astropy[test]
28-
astropy_healpix,all: git+https://github.com/astropy/astropy-healpix.git#egg=astropy_healpix[test]
29-
astroquery,all: git+https://github.com/astropy/astroquery.git#egg=astroquery[test,all]
27+
asdf_astropy,all: asdf_astropy[test] @ git+https://github.com/astropy/asdf-astropy.git
28+
astropy_healpix,all: astropy_healpix[test] @ git+https://github.com/astropy/astropy-healpix.git
29+
astroquery,all: astroquery[test,all] @ git+https://github.com/astropy/astroquery.git
3030
ccdproc,all: psutil
31-
ccdproc,all: git+https://github.com/astropy/ccdproc.git#egg=ccdproc[test,all]
32-
photutils,all: git+https://github.com/astropy/photutils.git#egg=photutils[test,all]
33-
regions,all: git+https://github.com/astropy/regions.git#egg=regions[test,all]
34-
reproject,all: git+https://github.com/astropy/reproject.git#egg=reproject[test,all]
35-
specreduce,all: git+https://github.com/astropy/specreduce.git#egg=specreduce[test]
36-
specutils,all: git+https://github.com/astropy/specutils.git#egg=specutils[all,test]
37-
sunpy,all: git+https://github.com/sunpy/sunpy.git#egg=sunpy[tests,all]
31+
ccdproc,all: ccdproc[test,all] @ git+https://github.com/astropy/ccdproc.git
32+
photutils,all: photutils[test,all] @ git+https://github.com/astropy/photutils.git
33+
regions,all: regions[test,all] @ git+https://github.com/astropy/regions.git
34+
reproject,all: reproject[test,all] @ git+https://github.com/astropy/reproject.git
35+
specreduce,all: specreduce[test] @ git+https://github.com/astropy/specreduce.git
36+
specutils,all: specutils[all,test] @ git+https://github.com/astropy/specutils.git#egg=
37+
sunpy,all: sunpy[tests,all] @ git+https://github.com/sunpy/sunpy.git
3838

3939
skip_install = true
4040

@@ -49,4 +49,4 @@ commands =
4949
reproject,all: pytest --pyargs reproject
5050
specreduce,all: pytest --pyargs specreduce
5151
specutils,all: pytest --pyargs specutils
52-
sunpy,all: pytest --pyargs sunpy
52+
sunpy,all: pytest --pyargs sunpy --doctest-ignore-import-errors

0 commit comments

Comments
 (0)