Skip to content

Commit f5b725b

Browse files
authored
Test code on 🐍 3.12 (#1080)
## Fixes issue #1031 ## Description of Changes Update 🐍 version matrix to include `3.12`. At some point I'd like to move the application to `3.12`, but I think now isn't the time. ## Tests and linting - [x] This branch is up-to-date with the `develop` branch. - [x] `pytest` passes on my local development environment. - [x] `pre-commit` passes on my local development environment.
1 parent 7681542 commit f5b725b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test_prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
FLASK_APP: OpenOversight.app
2020
strategy:
2121
matrix:
22-
python-version: ["3.11"]
22+
python-version: ["3.11", "3.12"]
2323
# Steps represent a sequence of tasks that will be executed as part of the job
2424
steps:
2525
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it

dockerfiles/web/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG MAKE_PYTHON_VERSION
22
ARG DOCKER_BUILD_ENV
3-
FROM python:${MAKE_PYTHON_VERSION:-3.11}-buster
3+
FROM python:${MAKE_PYTHON_VERSION:-3.11}-bullseye
44

55
WORKDIR /usr/src/app
66

0 commit comments

Comments
 (0)