Skip to content
Open
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
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ jobs:
python: "3.14"
postgres: "17"
case_suffix: "py3_14_xx-pg17_xx"
- platform: "alpine"
python: "3.15-rc"
postgres: "17"
case_suffix: "py3_15_rc-pg17_xx"
- platform: "alpine"
python: "3.12"
postgres: "10"
Expand Down
4 changes: 4 additions & 0 deletions Dockerfile--alpine.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ ENV PYTHON_VERSION=3.13
FROM base2_with_python-3 AS base3_with_python-3.14
ENV PYTHON_VERSION=3.14

# --------------------------------------------- base3_with_python-3.15-rc
FROM base2_with_python-3 AS base3_with_python-3.15-rc
ENV PYTHON_VERSION=3.15-dev

# --------------------------------------------- final
FROM base3_with_python-${PYTHON_VERSION} AS final

Expand Down