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

Upgrade Python version #17

Merged
merged 1 commit into from
Aug 1, 2024
Merged
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
16 changes: 8 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Pull any base image that includes python3
FROM python:3.10.13
FROM python:3.12.4

# install the toolbox runner tools
RUN pip install json2args==0.7.0
Expand All @@ -17,17 +17,17 @@ RUN mkdir /whitebox && \
# install dependecies for this tool
RUN pip install \
ipython==8.26.0 \
"pandas<=2.0.0" \
geopandas==0.14.2 \
pandas==2.2.2 \
geopandas==1.0.1 \
python-dotenv==1.0.0 \
xarray[complete]==2023.6.0 \
rioxarray==0.15.0 \
pyarrow==14.0.1 \
ydata-profiling==4.6.4 \
xarray[complete]==2024.7.0 \
rioxarray==0.17.0 \
pyarrow==17.0.0 \
ydata-profiling==4.9.0 \
# linux AArch64 extensions are not available for 0.9.2 -> 0.10.0 is released early Feb. 2024
"duckdb>=1.0.0" \
polars-lts-cpu==1.1.0 \
geocube
geocube==0.6.0

# install the needed version for metacatalog
RUN pip install metacatalog==0.9.1
Expand Down