blob: 1b0b1899f10c266c63bb07be9bad4182fa2b61c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
pip install --no-deps --force --upgrade d2to1
for d in jwst_lib/*
do
case "$d" in
# Append deprecated packages here to disable them
*/modeling) continue ;;
*/wcs) continue ;;
*) echo "Processing package: $d" ;;
esac
( cd $d && python setup.py install || exit 1 )
done
|