blob: af7302ea1bb879138b071f96f08cf3d38bc8a8b5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
sed 's|specutils==0.2.2|specutils|' < setup.cfg > setup.cfg.new
cp setup.cfg.new setup.cfg
# Remove reference to glueviz from setup script, since this breaks the build
# as there is no file containing 'glueviz' produced for that package since
# glueviz has become a metapackage.
sed -i -e "/'glueviz.*',$/d" setup.py
$PYTHON setup.py install --single-version-externally-managed --record=record.txt
|