diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-04-15 12:55:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-15 12:55:16 -0400 |
commit | de2c6a33a16fe1d6575d766610b955c3bd1a7652 (patch) | |
tree | eaa866f585bfc4a306beb0187ad9fa1ab64184ea /webbpsf | |
parent | e79e74eaabf3ba6c07ee76e38be4763c4c3347d6 (diff) | |
download | astroconda-dev-de2c6a33a16fe1d6575d766610b955c3bd1a7652.tar.gz |
webbpsf: fix version pinning failure (#131)
Diffstat (limited to 'webbpsf')
-rw-r--r-- | webbpsf/build.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/webbpsf/build.sh b/webbpsf/build.sh index 6bd6081..49370ee 100644 --- a/webbpsf/build.sh +++ b/webbpsf/build.sh @@ -1,2 +1,5 @@ +# Remove astropy version pinning (i.e, handled by recipe) +sed -e "s/'astropy[\!=<>].*,$/'astropy',/" setup.py > setup.py.new +mv setup.py.new setup.py $PYTHON setup.py install |