diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-05-03 14:46:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-03 14:46:12 -0400 |
commit | 9a2779481fe1ed704b2e8e09816a4d0f5f9138b6 (patch) | |
tree | d7fd3dea68c4a23f14d948fc3bf17a454d601dac /drizzlepac | |
parent | c889d60fd072bd018b027aa9455f6a0cad605b84 (diff) | |
download | astroconda-dev-9a2779481fe1ed704b2e8e09816a4d0f5f9138b6.tar.gz |
drizzlepac: support new build mechanics (#133)
Diffstat (limited to 'drizzlepac')
-rw-r--r-- | drizzlepac/bld.bat | 5 | ||||
-rw-r--r-- | drizzlepac/build.sh | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/drizzlepac/bld.bat b/drizzlepac/bld.bat index d6d7ec3..5602572 100644 --- a/drizzlepac/bld.bat +++ b/drizzlepac/bld.bat @@ -1,4 +1,7 @@ -%PYTHON% setup.py build build_ext --inplace -- build_sphinx +# Placeholder for real conda package +pip install --no-deps --upgrade --force sphinx-automodapi + +%PYTHON% setup.py build_sphinx if errorlevel 1 exit 1 %PYTHON% setup.py install diff --git a/drizzlepac/build.sh b/drizzlepac/build.sh index ccf863b..0a3e0f1 100644 --- a/drizzlepac/build.sh +++ b/drizzlepac/build.sh @@ -1,2 +1,5 @@ -$PYTHON setup.py build build_ext --inplace -- build_sphinx +# Placeholder for real conda package +pip install --no-deps --upgrade --force sphinx-automodapi + +$PYTHON setup.py build_sphinx $PYTHON setup.py install |