Skip to content

Commit

Permalink
explicit numpy pip install before requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhil-sarin committed Jun 26, 2023
1 parent 0bdba50 commit dbc46e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
sudo apt-get install dvipng texlive-latex-extra texlive-fonts-recommended cm-super
python -m pip install --upgrade pip
pip install flake8 pytest
pip install numpy
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f optional_requirements.txt ]; then pip install -r optional_requirements.txt; fi
pip install flake8 pytest pytest-cov coverage coverage-badge coveralls
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/python311.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
sudo apt-get install dvipng texlive-latex-extra texlive-fonts-recommended cm-super
python -m pip install --upgrade pip
pip install flake8 pytest
pip install numpy
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f optional_requirements.txt ]; then pip install -r optional_requirements.txt; fi
pip install flake8 pytest pytest-cov coverage coverage-badge coveralls
Expand Down

0 comments on commit dbc46e0

Please sign in to comment.