Skip to content

Commit

Permalink
use pip for ngist install and remove numpy reinstall
Browse files Browse the repository at this point in the history
  • Loading branch information
drtobybrown committed Oct 16, 2024
1 parent 2af9395 commit 663b455
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/test_build_mac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,18 @@ 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
# force reinstall of numpy due to v2.0.0 not working properly with other packages
pip install --force-reinstall -v "numpy==1.26.4"
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 --> no longer an issue?
# pip install --force-reinstall "numpy==1.26.4"
#python setup.py install
# python -m pip install --upgrade pip
# pip install flake8 pytest
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install ngist
run: |
python setup.py install
# 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 663b455

Please sign in to comment.