Skip to content

Commit

Permalink
refactor: use python 3.11 by default for development environments
Browse files Browse the repository at this point in the history
  • Loading branch information
azmeuk committed Dec 8, 2023
1 parent 077bf41 commit 465948a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

install-dev:
# Install dependencies for local development usage
poetry env use 3.8 ; poetry install --with dev ; poetry shell
poetry install --with dev ; poetry shell
pre-commit install

export-base-dependencies:
Expand Down
2 changes: 1 addition & 1 deletion web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8-bullseye
FROM python:3.11-bullseye

# Install.
RUN \
Expand Down
2 changes: 1 addition & 1 deletion web/Dockerfile-celery
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8-bullseye
FROM python:3.11-bullseye

# Install.
RUN \
Expand Down
2 changes: 1 addition & 1 deletion web/Dockerfile-tests
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8-bullseye
FROM python:3.11-bullseye

# Install.
RUN \
Expand Down

0 comments on commit 465948a

Please sign in to comment.