diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2019-05-07 14:23:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-07 14:23:47 -0400 |
commit | 3891b3da15bbff3f12d6fe08eb92b54e775714a5 (patch) | |
tree | e0744d4ffe46f78bbf2eb12ace07e8136c7d521c /stsci.tools | |
parent | 4a24bbbea2a4a50b5580b57d8f4ae858ae04dd32 (diff) | |
download | astroconda-dev-3891b3da15bbff3f12d6fe08eb92b54e775714a5.tar.gz |
Refactor namespace packages to avoid .egg creation (#195)
Diffstat (limited to 'stsci.tools')
-rw-r--r-- | stsci.tools/bld.bat | 2 | ||||
-rw-r--r-- | stsci.tools/build.sh | 2 | ||||
-rw-r--r-- | stsci.tools/meta.yaml | 3 |
3 files changed, 3 insertions, 4 deletions
diff --git a/stsci.tools/bld.bat b/stsci.tools/bld.bat index 39b5e1f..6d5f099 100644 --- a/stsci.tools/bld.bat +++ b/stsci.tools/bld.bat @@ -1 +1 @@ -%PYTHON% setup.py install +%PYTHON% setup.py install --single-version-externally-managed --record=root.txt diff --git a/stsci.tools/build.sh b/stsci.tools/build.sh index 5a5aeeb..b699425 100644 --- a/stsci.tools/build.sh +++ b/stsci.tools/build.sh @@ -1 +1 @@ -$PYTHON setup.py install +$PYTHON setup.py install --single-version-externally-managed --record=root.txt diff --git a/stsci.tools/meta.yaml b/stsci.tools/meta.yaml index f9b73f2..7470c4e 100644 --- a/stsci.tools/meta.yaml +++ b/stsci.tools/meta.yaml @@ -3,7 +3,7 @@ {% if version[0] == 'v' %} {% set version = version[1:] %} {% endif %} -{% set number = '0' %} +{% set number = '1' %} about: home: https://github.com/spacetelescope/{{ name }} @@ -12,7 +12,6 @@ about: build: number: {{ number }} - preserve_egg_dir: 'yes' package: name: {{ name }} |