diff options
-rw-r--r-- | .github/workflows/build.yml | 2 | ||||
-rw-r--r-- | Dockerfile | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3b27209..fbdd84c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: build: strategy: matrix: - python_version: ["3.9", 3.9-slim, "3.10", 3.10-slim, "3", 3-slim] + python_version: ["3.9", 3.9-slim, "3.10", 3.10-slim, "3.11", 3.11-slim, "3", 3-slim] runs-on: ubuntu-latest steps: @@ -1,10 +1,10 @@ -ARG python_version=3.10 +ARG python_version=3.11-slim FROM --platform=linux/amd64 python:$python_version # POETRY_VIRTUALENVS_IN_PROJECT is required to ensure in-projects venvs mounted from the host in dev # don't get prioritised by `poetry run` -ENV POETRY_VERSION=1.2.0 \ +ENV POETRY_VERSION=1.2.2 \ POETRY_HOME="/opt/poetry/home" \ POETRY_CACHE_DIR="/opt/poetry/cache" \ POETRY_NO_INTERACTION=1 \ |