Skip to content

Commit

Permalink
maybe order matters
Browse files Browse the repository at this point in the history
  • Loading branch information
esheldon committed Jun 19, 2024
1 parent 8d89590 commit 38c235b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ jobs:
with:
python-version: ${{ matrix.pyver }}

- name: install numpy
run: pip install numpy

- name: Make nmake available
uses: ilammy/msvc-dev-cmd@v1

Expand All @@ -46,6 +43,9 @@ jobs:
- name: install cfitsio
run: |
mkdir cfitsio-build
cd cfitsio-build
curl.exe --output cfitsio.zip --url https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/cfit-4.4.1.zip
unzip cfitsio.zip
cd cfitsio-4.4.1
Expand All @@ -61,6 +61,10 @@ jobs:
cd ..
cd ..
cd ..
- name: install numpy
run: pip install numpy

- name: Install code
run: pip install --no-deps -e . --global-option="build_ext" --global-option="--use-system-fitsio"
Expand Down

0 comments on commit 38c235b

Please sign in to comment.