summaryrefslogtreecommitdiff
path: root/jwst_tools/build.sh
blob: dc3b810a0b680579f4dc3d89592430ccda121c8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13

pip install --no-deps --force --upgrade d2to1

rm -rf jwst_tools/timeconversion

for d in jwst_tools/*
do
    if [[ $d == *spectools* ]]; then
        # Indentation errors in package
        continue
    fi
    ( cd $d && python setup.py install || exit 1 )
done