Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pin versions since numpy 2 breaks things #179

Merged
merged 5 commits into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM quay.io/jupyter/minimal-notebook

USER root

RUN apt update
RUN apt install -y graphviz
RUN apt install -y wget

RUN python -m pip install --upgrade pip
RUN python -m pip install naturf

RUN wget https://raw.githubusercontent.com/IMMM-SFA/naturf/main/notebooks/quickstarter.ipynb

RUN rm -rf work
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ dependencies = [
"fiona==1.8.19;python_version<'3.10'",
"fiona>=1.9.6;python_version>='3.10'",
"geocube==0.3.3;python_version<'3.10'",
"geocube>=0.5.2;python_version>='3.10'",
"geocube>=0.5.2,<6;python_version>='3.10'",
"geopandas==0.10.2;python_version<'3.10'",
"geopandas>=0.14.4;python_version>='3.10'",
"geopandas>=0.14.4,<1;python_version>='3.10'",
"graphviz==0.20.3",
"joblib>=1.4.2",
"numpy==1.22.4;python_version<'3.10'",
"numpy>=1.26.4;python_version>='3.10'",
"numpy>=1.26.4,<2;python_version>='3.10'",
"pandas>=2.2.2",
"pyproj>=3.0.1",
"rasterio>=1.3.10",
Expand Down