diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2019-05-10 12:47:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-10 12:47:32 -0400 |
commit | 4ebe28b1da4896f51d66ead96e7966eac6e5e3e7 (patch) | |
tree | d1fea5201422b0a50f00c6115ac356379cdb5476 /pysynphot | |
parent | 3891b3da15bbff3f12d6fe08eb92b54e775714a5 (diff) | |
download | astroconda-dev-4ebe28b1da4896f51d66ead96e7966eac6e5e3e7.tar.gz |
Fix a few broken packages (#196)
* acstools: fix requirements
* pysynphot: fix requirements
Diffstat (limited to 'pysynphot')
-rw-r--r-- | pysynphot/bld.bat | 2 | ||||
-rw-r--r-- | pysynphot/build.sh | 2 | ||||
-rw-r--r-- | pysynphot/meta.yaml | 4 |
3 files changed, 5 insertions, 3 deletions
diff --git a/pysynphot/bld.bat b/pysynphot/bld.bat index 39b5e1f..4a7ed5f 100644 --- a/pysynphot/bld.bat +++ b/pysynphot/bld.bat @@ -1 +1 @@ -%PYTHON% setup.py install +%PYTHON% setup.py install --single-version-externally-managed --record=record.txt diff --git a/pysynphot/build.sh b/pysynphot/build.sh index 5a5aeeb..a660906 100644 --- a/pysynphot/build.sh +++ b/pysynphot/build.sh @@ -1 +1 @@ -$PYTHON setup.py install +$PYTHON setup.py install --single-version-externally-managed --record=record.txt diff --git a/pysynphot/meta.yaml b/pysynphot/meta.yaml index 61901c1..e2e3b6f 100644 --- a/pysynphot/meta.yaml +++ b/pysynphot/meta.yaml @@ -3,7 +3,7 @@ {% if version[0] == 'v' %} {% set version = version[1:] %} {% endif %} -{% set number = '2' %} +{% set number = '3' %} about: home: https://github.com/spacetelescope/{{ name }} @@ -22,6 +22,7 @@ requirements: build: - nose - astropy + - beautifulsoup4 - cython - matplotlib - setuptools @@ -31,6 +32,7 @@ requirements: run: - nose - astropy + - beautifulsoup4 - cython - matplotlib - numpy |