Skip to content

Commit

Permalink
Downgrade python 3.12 to 3.11 (#198)
Browse files Browse the repository at this point in the history
Fixes #195
  • Loading branch information
tcarmet authored Dec 2, 2024
1 parent 14ad444 commit 3ace1c7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Python 3",
"image": "mcr.microsoft.com/devcontainers/python:0-3.10",
"image": "mcr.microsoft.com/devcontainers/python:0-3.11",
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {
"version": "latest"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: pip install poetry
- uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
cache: poetry
- name: Install dependencies
run: poetry install
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12
FROM python:3.11

EXPOSE 8000

Expand Down

0 comments on commit 3ace1c7

Please sign in to comment.