Skip to content

Commit

Permalink
python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
dimbleby committed Jan 19, 2024
1 parent ca623f8 commit fe509c7
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 67 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.5
FROM python:3.11-slim AS builder
FROM python:3.12-slim AS builder

RUN --mount=type=cache,target=/var/cache/apt \
--mount=type=cache,target=/var/lib/apt \
Expand Down
28 changes: 14 additions & 14 deletions azure/.terraform.lock.hcl

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

2 changes: 1 addition & 1 deletion azure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ resource "azurerm_linux_web_app" "treasure" {
http2_enabled = true
app_command_line = "daphne -b 0.0.0.0 treasure.asgi:application"
application_stack {
python_version = "3.11"
python_version = "3.12"
}
}

Expand Down
54 changes: 3 additions & 51 deletions poetry.lock

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

2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ select = [
"ARG", # flake8-unused-arguments
"ASYNC", # flake8-async
"B", # flake8-bugbear
"BLE", # flake8-blind-except
"C4", # flake8-comprehensions
"DJ", # flake8-django
"DTZ", # flake8-datetimez
Expand All @@ -108,6 +109,7 @@ select = [
"PLE", # pylint errors
"PLW", # pylint warnings
"PTH", # flake8-use-pathlib
"Q", # flake8-quotes
"RET", # flake8-return
"RSE", # flake8-raise
"RUF", # ruff
Expand Down

0 comments on commit fe509c7

Please sign in to comment.