Skip to content

Commit

Permalink
No define versions, but shapely complains
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuarte47 committed Oct 28, 2022
1 parent 8178051 commit b705e66
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9"]
python-version: ["3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v3
Expand All @@ -22,12 +22,12 @@ jobs:
sudo add-apt-repository -y ppa:ubuntugis/ppa
sudo apt-get update
sudo apt-get install -y gdal-bin libgdal-dev
python -m pip install numpy==1.22.4
python -m pip install numpy
python -m pip install GDAL==$(gdal-config --version)
python -m pip install flake8 pytest
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
sudo add-apt-repository -y --remove ppa:ubuntugis/ppa
sudo apt-get update
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# This file specifies requirements of a reproducible environment to run GeodataFlow.
numpy
requests
pyproj==3.3.0
shapely==1.7.1
pyproj
shapely
GDAL
pandas==1.2.1
geopandas==0.8.2
pandas
geopandas

0 comments on commit b705e66

Please sign in to comment.