Skip to content

Commit

Permalink
Try to clean up some of these changes
Browse files Browse the repository at this point in the history
The build process worked in the previous commit! So now let's try to
make things clean.
  • Loading branch information
santisoler committed Dec 4, 2024
1 parent ca2de6f commit c318601
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# pip install -r requirements.txt
pip install --no-build-isolation geoana==0.2.1
pip install --no-build-isolation -r requirements.txt -r requirements-build-geoana.txt
# Install extra packages
pip install flake8 pytest
Expand Down
13 changes: 13 additions & 0 deletions requirements-build-geoana.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Requirements to build geoana 0.2.1 without isolation
#
# This file was added as a way to install geoana 0.2.1 (old version) in GitHub
# Actions and build the website using an this old version of geoana.
#
# We should remove this file after updating the repo to work with the latest
# version of geoana. The easiest way to do so would be to revert the commit
# that added this file.
#
numpy<1.23
cython
setuptools<60
wheel
6 changes: 1 addition & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,4 @@ sphinxcontrib-bibtex
sphinx_rtd_theme
pytest
matplotlib
# geoana==0.2.1
numpy<1.23
cython
setuptools<60
wheel
geoana==0.2.1

0 comments on commit c318601

Please sign in to comment.