Skip to content

Commit

Permalink
v10.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Apr 11, 2024
1 parent bd124ba commit baee5f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions manage.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python
"""Django's command-line utility for administrative tasks."""

import os
import sys

Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dev = [
'm2r2==0.3.3.post2',
'mistune<2.0.0',
'flit~=3.9',
'ambient-package-update~=24.4.2',
'ambient-package-update~=24.4.4',
'gevent~=23.9',
'httpx~=0.27',
]
Expand Down Expand Up @@ -80,7 +80,7 @@ name = "ambient_toolbox"
'Changelog' = 'https://ambient-toolbox.readthedocs.io/en/latest/features/changelog.html'

[tool.ruff]
select = [
lint.select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # Pyflakes
Expand All @@ -102,7 +102,7 @@ select = [
"PGH", # No all-purpose "# noqa" and eval validation
"PL", # PyLint
]
ignore = [
lint.ignore = [
'N999', # Project name contains underscore, not fixable
'A003', # Django attributes shadow python builtins
'DJ001', # Django model text-based fields shouldn't be nullable
Expand All @@ -114,7 +114,7 @@ ignore = [
]

# Allow autofix for all enabled rules (when `--fix`) is provided.
fixable = [
lint.fixable = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # Pyflakes
Expand All @@ -136,7 +136,7 @@ fixable = [
"PGH", # No all-purpose "# noqa" and eval validation
"PL", # PyLint
]
unfixable = []
lint.unfixable = []

exclude = [
".bzr",
Expand Down

0 comments on commit baee5f7

Please sign in to comment.