diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2021-02-03 19:55:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-03 19:55:13 -0500 |
commit | 57f521266cdf6cd841bf1c2ccb3590c314229328 (patch) | |
tree | 9004aa99f9162bebe21b09bf52662658c3fef777 /acstools | |
parent | fb3c457bc08cb62582ff55e63b746be3adb3c0c9 (diff) | |
download | astroconda-contrib-57f521266cdf6cd841bf1c2ccb3590c314229328.tar.gz |
acstools: do not build as egg (#691)
Diffstat (limited to 'acstools')
-rw-r--r-- | acstools/bld.bat | 2 | ||||
-rw-r--r-- | acstools/build.sh | 2 | ||||
-rw-r--r-- | acstools/meta.yaml | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/acstools/bld.bat b/acstools/bld.bat index 39b5e1f..6d5f099 100644 --- a/acstools/bld.bat +++ b/acstools/bld.bat @@ -1 +1 @@ -%PYTHON% setup.py install +%PYTHON% setup.py install --single-version-externally-managed --record=root.txt diff --git a/acstools/build.sh b/acstools/build.sh index 5a5aeeb..b699425 100644 --- a/acstools/build.sh +++ b/acstools/build.sh @@ -1 +1 @@ -$PYTHON setup.py install +$PYTHON setup.py install --single-version-externally-managed --record=root.txt diff --git a/acstools/meta.yaml b/acstools/meta.yaml index 154f7ca..735a9f3 100644 --- a/acstools/meta.yaml +++ b/acstools/meta.yaml @@ -1,6 +1,6 @@ {% set name = 'acstools' %} {% set version = '3.3.1' %} -{% set number = '0' %} +{% set number = '1' %} about: home: https://github.com/spacetelescope/{{ name }} @@ -8,7 +8,7 @@ about: summary: Python tools for analyzing ACS data build: number: {{ number }} - skip: true # [py2k] + skip: true # [py2k] package: name: {{ name }} version: {{ version }} |