Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] authored and joshuadavidthomas committed Jan 21, 2025
1 parent 2a2a003 commit 545537a
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ build-backend = "hatchling.build"
requires = ["hatchling"]

[project]
authors = [{ name = "Josh Thomas", email = "josh@joshthomas.dev" }]
authors = [{name = "Josh Thomas", email = "josh@joshthomas.dev"}]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Django",
Expand All @@ -20,13 +20,13 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: CPython"
]
dependencies = ["django>=4.2", "django_q2>=1.4.3"]
description = "A Django app to register periodic Django Q tasks."
dynamic = ["version"]
keywords = []
license = { file = "LICENSE" }
license = {file = "LICENSE"}
name = "django-q-registry"
readme = "README.md"
requires-python = ">=3.9"
Expand All @@ -50,7 +50,7 @@ dev = [
"pytest-randomly",
"pytest-reverse",
"pytest-xdist",
"ruff",
"ruff"
]
docs = [
"cogapp",
Expand All @@ -59,7 +59,7 @@ docs = [
"sphinx",
"sphinx-autobuild",
"sphinx-copybutton",
"sphinx-inline-tabs",
"sphinx-inline-tabs"
]
lint = ["pre-commit"]

Expand All @@ -72,7 +72,7 @@ Source = "https://github.com/westerveltco/django-q-registry"
commit = true
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
current_version = "0.4.0"
push = false # set to false for CI
push = false # set to false for CI
tag = false
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"

Expand All @@ -91,7 +91,7 @@ exclude_lines = [
"if not DEBUG:",
"if settings.DEBUG:",
"if TYPE_CHECKING:",
'def __str__\(self\)\s?\-?\>?\s?\w*\:',
'def __str__\(self\)\s?\-?\>?\s?\w*\:'
]
fail_under = 75

Expand All @@ -107,7 +107,7 @@ strict_settings = false
blank_line_after_tag = "endblock,endpartialdef,extends,load"
blank_line_before_tag = "block,partialdef"
custom_blocks = "partialdef"
ignore = "H031" # Don't require `meta` tag keywords
ignore = "H031" # Don't require `meta` tag keywords
indent = 2
profile = "django"

Expand Down Expand Up @@ -166,7 +166,7 @@ exclude = [
"dist",
"migrations",
"node_modules",
"venv",
"venv"
]
extend-include = ["*.pyi?"]
indent-width = 4
Expand All @@ -188,13 +188,13 @@ quote-style = "double"
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
# Allow autofix for all enabled rules (when `--fix`) is provided.
fixable = ["A", "B", "C", "D", "E", "F", "I"]
ignore = ["E501", "E741"] # temporary
ignore = ["E501", "E741"] # temporary
select = [
"B", # flake8-bugbear
"E", # Pycodestyle
"F", # Pyflakes
"I", # isort
"UP", # pyupgrade
"UP" # pyupgrade
]
unfixable = []

Expand Down

0 comments on commit 545537a

Please sign in to comment.