diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-08-07 10:55:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-07 10:55:28 -0400 |
commit | b3ce5bb5cfd4a7a3177259fa729b6c19e3e496ef (patch) | |
tree | 4fdbf4b24b1c627873a63787a5762b594d7f4a5a /specviz/build.sh | |
parent | 26379e8d73957724051a0a52c80eaddbdaa36d70 (diff) | |
download | astroconda-dev-b3ce5bb5cfd4a7a3177259fa729b6c19e3e496ef.tar.gz |
specviz: circumvent pyqt5 dependency (#151)
Diffstat (limited to 'specviz/build.sh')
-rw-r--r-- | specviz/build.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/specviz/build.sh b/specviz/build.sh index 9ecbe94..b46d192 100644 --- a/specviz/build.sh +++ b/specviz/build.sh @@ -1,4 +1,5 @@ -sed 's|specutils==0.2.2|specutils|' < setup.cfg > setup.cfg.new -cp setup.cfg.new setup.cfg +sed -e 's|specutils==0.2.2|specutils|' \ + -e 's|pyqt5||' < setup.cfg > setup.cfg.new +cp -a setup.cfg.new setup.cfg $PYTHON setup.py install |