Skip to content

Commit

Permalink
Gather requirements in a new txt file and install geoana separately
Browse files Browse the repository at this point in the history
  • Loading branch information
santisoler committed Dec 4, 2024
1 parent c318601 commit b690db0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# pip install -r requirements.txt
pip install --no-build-isolation -r requirements.txt -r requirements-build-geoana.txt
# Gather requirements and install older version of geoana
cat requirements.txt | grep -v "^geoana" > requirements-ci.txt
cat requirements-build-geoana.txt | grep -v "^#" >> requirements-ci.txt
pip install -r requirements-ci.txt
rm requirements-ci.txt
pip install --no-build-isolation geoana==0.2.1
# Install extra packages
pip install flake8 pytest
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ sphinxcontrib-bibtex
sphinx_rtd_theme
pytest
matplotlib
geoana==0.2.1
geoana

0 comments on commit b690db0

Please sign in to comment.