Skip to content

Commit

Permalink
tidy up pip installs
Browse files Browse the repository at this point in the history
  • Loading branch information
drtobybrown committed Oct 16, 2024
1 parent eb7ebba commit acea54d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_build_mac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install numpy astropy PyQt6 scipy matplotlib pytest multiprocess latex spectral_cube extinction h5py joblib
pip install numpy astropy PyQt6 scipy matplotlib pytest latex spectral_cube extinction h5py joblib
# force reinstall of numpy due to v2.0.0 not working properly with other packages
pip install --force-reinstall -v "numpy==1.26.4"
Expand All @@ -33,7 +33,7 @@ jobs:
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install ngist
run: |
python setup.py install
pip install .
# - name : Lint with flake8
# run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_build_ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install numpy astropy PyQt6 scipy matplotlib pytest multiprocess latex spectral_cube extinction h5py joblib
pip install numpy astropy PyQt6 scipy matplotlib pytest latex spectral_cube extinction h5py joblib
# force reinstall of numpy due to v2.0.0 not working properly with other packages
pip install --force-reinstall -v "numpy==1.26.4"
Expand All @@ -36,7 +36,7 @@ jobs:
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install ngist
run: |
python setup.py install
pip install .
# - name : Lint with flake8
# run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down

0 comments on commit acea54d

Please sign in to comment.