Skip to content

Commit

Permalink
oops, no numpy at that point
Browse files Browse the repository at this point in the history
  • Loading branch information
dstndstn committed Jul 22, 2024
1 parent 7c983d0 commit 275786c
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,27 +37,25 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
echo "Step 1"
python -c "import numpy as x; print(x.__version__)"
python -m pip install pytest
python -m pip install git+https://github.com/desihub/desiutil.git@${DESIUTIL_VERSION}#egg=desiutil
echo "Step 2"
python -c "import numpy as x; print(x.__version__)"
python -c "import numpy as x; print(x.__version__)" || echo "no numpy yet"
python -m pip install -U 'numpy${{ matrix.numpy-version }}'
echo "Step 3"
python -c "import numpy as x; print(x.__version__)"
python -c "import numpy as x; print(x.__version__)" || echo "no numpy yet"
python -m pip install -U 'astropy${{ matrix.astropy-version }}'
echo "Step 4"
python -c "import numpy as x; print(x.__version__)"
python -c "import numpy as x; print(x.__version__)" || echo "no numpy yet"
python -m pip cache remove fitsio
echo "Step 5"
python -c "import numpy as x; print(x.__version__)"
python -c "import numpy as x; print(x.__version__)" || echo "no numpy yet"
python -m pip install --no-deps --force-reinstall --ignore-installed 'fitsio${{ matrix.fitsio-version }}'
echo "Step 6"
python -c "import numpy as x; print(x.__version__)"
python -c "import numpy as x; print(x.__version__)" || echo "no numpy yet"
python -m pip install pyyaml requests scipy healpy matplotlib
echo "Step 7"
python -c "import numpy as x; print(x.__version__)"
python -c "import numpy as x; print(x.__version__)" || echo "no numpy yet"
svn export https://desi.lbl.gov/svn/code/desimodel/${DESIMODEL_DATA}/data
# ADM grab the surveyops directory.
wget -e robots=off -r -np -nH --cut-dirs 7 https://data.desi.lbl.gov/public/edr/survey/ops/surveyops/tags/0.1/ops/
Expand Down

0 comments on commit 275786c

Please sign in to comment.