diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-08-23 20:18:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-23 20:18:33 -0400 |
commit | 91e59f3ebcfe0b824bd2ecba743ec25c41430427 (patch) | |
tree | 4bec8118c98c3c2bc5ee23772a6c9e71db7cc240 /stsci.skypac | |
parent | 545448ec63743c57b9fefcd572ff6d79d9dcf3a3 (diff) | |
download | astroconda-contrib-91e59f3ebcfe0b824bd2ecba743ec25c41430427.tar.gz |
Remove or silence 2to3 execution (#55)
Diffstat (limited to 'stsci.skypac')
-rw-r--r-- | stsci.skypac/bld.bat | 3 | ||||
-rw-r--r-- | stsci.skypac/build.sh | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/stsci.skypac/bld.bat b/stsci.skypac/bld.bat index abdd1e3..8d766c9 100644 --- a/stsci.skypac/bld.bat +++ b/stsci.skypac/bld.bat @@ -1,4 +1,3 @@ python setup.py install -2to3 -w . -if errorlevel 1 exit 1
\ No newline at end of file +if errorlevel 1 exit 1 diff --git a/stsci.skypac/build.sh b/stsci.skypac/build.sh index f452b7b..1032cc4 100644 --- a/stsci.skypac/build.sh +++ b/stsci.skypac/build.sh @@ -23,6 +23,5 @@ set_py3k pip install --no-deps --upgrade --force d2to1 if [ $PY3K -ne 0 ] ; then sed -i -e "s|stsci.distutils.hooks.tag_svn_revision|#removed|" setup.cfg -2to3 -w . fi -python setup.py install || exit 1
\ No newline at end of file +python setup.py install || exit 1 |