Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Python version to 3.13.0 #578

Merged
merged 1 commit into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
pull_request: ~

env:
PYTHON_VERSION: 3.12.6
PYTHON_VERSION: 3.13.0
PRE_COMMIT_VERSION: 4.0.1

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
pull_request: ~

env:
PYTHON_VERSION: 3.12.6
PYTHON_VERSION: 3.13.0
POETRY_VERSION: 1.8.4

jobs:
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.6-slim-bookworm
FROM python:3.13.0-slim-bookworm

RUN --mount=type=cache,target=/var/cache/apt --mount=type=cache,target=/var/lib/apt \
apt update && \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ heroku buildpacks:add https://github.com/moneymeets/python-poetry-buildpack.git
heroku buildpacks:add heroku/python

heroku config:set POETRY_VERSION=1.8.4
heroku config:set PYTHON_RUNTIME_VERSION=3.12.6
heroku config:set PYTHON_RUNTIME_VERSION=3.13.0
```

# Contribution
Expand Down
5 changes: 2 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ xkcdpass = "1.19.9"
pydot = "3.0.2" # For visualizing Django models with "graph_models --pydot"

[tool.poetry.dependencies]
python = "^3.12"
python = "^3.13"
celery = {extras = ["redis"], version = "5.4.0"}
Django = "5.1.2"
djangorestframework = "3.15.2"
Expand Down