Skip to content

Commit 5672032

Browse files
committed
Minimal way to upgrade Python or Rasterio
1 parent 41bfa4f commit 5672032

File tree

3 files changed

+343
-398
lines changed

3 files changed

+343
-398
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Note that this ENV is the name of an argument/variable, not the Dockerfile ENV command
22
ARG ENV
3-
ARG PYTHON_VERSION="3.11"
3+
ARG PYTHON_VERSION="3.12"
44
ARG USR_LOCAL_BIN=/usr/local/bin
5-
ARG UV_VERSION="0.9.11"
5+
ARG UV_VERSION="0.9.22"
66
ARG VENV_DIR=/app/.venv
77

88
FROM --platform=linux/amd64 ubuntu:noble AS build

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "gfw-tile-cache"
33
version = "0.1.0"
44
description = "Add your description here"
5-
requires-python = "~=3.11.0"
5+
requires-python = "~=3.12.0"
66
dependencies = [
77
"aenum<3.0",
88
"aioboto3",
@@ -28,7 +28,7 @@ dependencies = [
2828
"pydantic",
2929
"pydantic-settings",
3030
"pyproj",
31-
"rasterio==1.4.3",
31+
"rasterio==1.5.0",
3232
"shapely",
3333
"sqlalchemy<1.4",
3434
"starlette",

0 commit comments

Comments
 (0)