From 02f6eea96a2cddea57bf8c2393b0925d117fa60a Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 13:15:39 -0600 Subject: [PATCH] [pre-commit.ci] pre-commit autoupdate (#339) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.7.3 → v0.7.4](https://github.com/astral-sh/ruff-pre-commit/compare/v0.7.3...v0.7.4) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .pre-commit-config.yaml | 2 +- examples/default/default/settings.py | 6 ++++-- examples/default/pyproject.toml | 6 +++--- examples/default/templates/500.html | 1 + examples/default/templates/base.html | 13 +++++++++++++ examples/postgis/default/settings.py | 6 ++++-- examples/postgis/pyproject.toml | 6 +++--- examples/postgis/templates/base.html | 13 +++++++++++++ examples/with_vite/pyproject.toml | 12 ++++++------ examples/with_vite/templates/index.html | 1 + examples/with_vite/with_vite/settings.py | 6 ++++-- 11 files changed, 53 insertions(+), 19 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3183de98..cf934281 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -11,7 +11,7 @@ repos: - id: check-yaml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.7.3 + rev: v0.7.4 hooks: - id: ruff args: [--fix] diff --git a/examples/default/default/settings.py b/examples/default/default/settings.py index 13eba380..beb35ac9 100644 --- a/examples/default/default/settings.py +++ b/examples/default/default/settings.py @@ -56,7 +56,9 @@ # 1. Django Core Settings # https://docs.djangoproject.com/en/5.1/ref/settings/ -ALLOWED_HOSTS = env.list("ALLOWED_HOSTS", default=["*"] if DEBUG else ["localhost"], subcast=str) +ALLOWED_HOSTS = env.list( + "ALLOWED_HOSTS", default=["*"] if DEBUG else ["localhost"], subcast=str +) ASGI_APPLICATION = "default.asgi.application" @@ -446,7 +448,7 @@ ) # sentry -if PROD and(SENTRY_DSN := env.url("SENTRY_DSN", default=None)).scheme: +if PROD and (SENTRY_DSN := env.url("SENTRY_DSN", default=None)).scheme: sentry_sdk.init( dsn=SENTRY_DSN.geturl(), environment=env.str( diff --git a/examples/default/pyproject.toml b/examples/default/pyproject.toml index 31535499..584028fe 100644 --- a/examples/default/pyproject.toml +++ b/examples/default/pyproject.toml @@ -41,11 +41,11 @@ dependencies = [ "openpyxl", "psycopg[binary, pool]", "sentry-sdk[django]", - "whitenoise", + "whitenoise" ] +dynamic = ["version"] name = "default" requires-python = ">=3.12" -dynamic = ["version"] [project.optional-dependencies] docs = [ @@ -76,7 +76,7 @@ types = [ "django-stubs", "mypy", "types-croniter", - "types-openpyxl", + "types-openpyxl" ] [tool.bumpver] diff --git a/examples/default/templates/500.html b/examples/default/templates/500.html index e0c8464f..b5cc34e6 100644 --- a/examples/default/templates/500.html +++ b/examples/default/templates/500.html @@ -1,4 +1,5 @@ {% extends "base.html" %} + {% block content %}
Uh oh! Something went wrong on our end.
diff --git a/examples/default/templates/base.html b/examples/default/templates/base.html index 462bd2dc..3e188be4 100644 --- a/examples/default/templates/base.html +++ b/examples/default/templates/base.html @@ -1,22 +1,27 @@ {% load static %} {% load django_htmx %} {% load tailwind_cli %} +diff --git a/examples/with_vite/with_vite/settings.py b/examples/with_vite/with_vite/settings.py index 5248817b..52258321 100644 --- a/examples/with_vite/with_vite/settings.py +++ b/examples/with_vite/with_vite/settings.py @@ -56,7 +56,9 @@ # 1. Django Core Settings # https://docs.djangoproject.com/en/5.1/ref/settings/ -ALLOWED_HOSTS = env.list("ALLOWED_HOSTS", default=["*"] if DEBUG else ["localhost"], subcast=str) +ALLOWED_HOSTS = env.list( + "ALLOWED_HOSTS", default=["*"] if DEBUG else ["localhost"], subcast=str +) ASGI_APPLICATION = "with_vite.asgi.application" @@ -456,7 +458,7 @@ DJANGO_VITE_DEV_SERVER_PORT = 5173 # sentry -if PROD and(SENTRY_DSN := env.url("SENTRY_DSN", default=None)).scheme: +if PROD and (SENTRY_DSN := env.url("SENTRY_DSN", default=None)).scheme: sentry_sdk.init( dsn=SENTRY_DSN.geturl(), environment=env.str(