Skip to content

Commit

Permalink
Unpin numpy
Browse files Browse the repository at this point in the history
  • Loading branch information
webb-ben committed Jul 23, 2024
1 parent aa300a2 commit 55548c4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,14 @@ jobs:
with:
postgresql password: ${{ env.POSTGRESQL_PASSWORD }}
postgresql db: 'test'
- name: show build
run: |
docker build .
- name: Run pygeoapi
run: |
docker run -d -it --rm -p 5000:80 $(docker build -q .)
docker run -d -it --name pygeoapi -p 5000:80 $(docker build -q .)
sleep 10
docker logs pygeoapi
- name: Install requirements 📦
run: |
pip3 install https://github.com/geopython/pygeoapi/archive/refs/heads/master.zip
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ ADD . /pygeoapi_plugins

RUN pip3 install -e /pygeoapi_plugins

RUN pip3 list

ENTRYPOINT [ "/entrypoint.sh" ]
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pygeoapi
geoalchemy
geopandas
numpy<2.0.0
numpy
psycopg2
pygeofilter[backend-sqlalchemy]
requests
Expand Down

0 comments on commit 55548c4

Please sign in to comment.