Skip to content

Commit 3ace1c7

Browse files
authored
Downgrade python 3.12 to 3.11 (#198)
Fixes #195
1 parent 14ad444 commit 3ace1c7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Python 3",
3-
"image": "mcr.microsoft.com/devcontainers/python:0-3.10",
3+
"image": "mcr.microsoft.com/devcontainers/python:0-3.11",
44
"features": {
55
"ghcr.io/devcontainers/features/github-cli:1": {
66
"version": "latest"

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: pip install poetry
2222
- uses: actions/setup-python@v4
2323
with:
24-
python-version: "3.10"
24+
python-version: "3.11"
2525
cache: poetry
2626
- name: Install dependencies
2727
run: poetry install

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12
1+
FROM python:3.11
22

33
EXPOSE 8000
44

0 commit comments

Comments
 (0)