From 3ab96900e1d843af3a524eb234840a7ac69df579 Mon Sep 17 00:00:00 2001 From: Lance Albertson Date: Mon, 15 Apr 2024 14:31:15 -0700 Subject: [PATCH] Switch to python 3.11 Also update the python test matrix to add 3.11 and 3.12 and remove 3.9. Signed-off-by: Lance Albertson --- .github/workflows/ci.yml | 3 ++- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4df1280..f31c83c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,8 +14,9 @@ jobs: strategy: matrix: python-version: - - "3.9" - "3.10" + - "3.11" + - "3.12" steps: - uses: actions/checkout@v3 diff --git a/Dockerfile b/Dockerfile index c79d28e..61a9aea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-alpine +FROM python:3.11-alpine COPY conf.py.dist /formsender/conf.py COPY requirements.txt /formsender/requirements.txt