Skip to content

Commit

Permalink
install numpy after astropy
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverba137 committed Sep 14, 2023
1 parent ace54c2 commit 3ba00ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
python -m pip install --upgrade pip wheel setuptools
python -m pip install pytest pytest-astropy pyyaml
# python -m pip install -r requirements.txt
python -m pip install --no-deps 'numpy${{ matrix.numpy-version }}'
python -m pip install --no-deps 'scipy${{ matrix.scipy-version }}'
python -m pip install --no-deps 'matplotlib${{ matrix.matplotlib-version }}'
python -m pip install --no-deps 'astropy${{ matrix.astropy-version }}'
python -m pip install 'scipy${{ matrix.scipy-version }}'
python -m pip install 'matplotlib${{ matrix.matplotlib-version }}'
python -m pip install 'astropy${{ matrix.astropy-version }}'
python -m pip install 'numpy${{ matrix.numpy-version }}'
- name: Run the test
run: pytest

Expand Down

0 comments on commit 3ba00ec

Please sign in to comment.