From baee5f7e1449272fa75280449b4c3fd10134547c Mon Sep 17 00:00:00 2001 From: Ronny Vedrilla Date: Thu, 11 Apr 2024 16:02:45 +0200 Subject: [PATCH] v10.0.0 --- manage.py | 1 + pyproject.toml | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/manage.py b/manage.py index 9e94ce3..80a63d1 100644 --- a/manage.py +++ b/manage.py @@ -1,5 +1,6 @@ #!/usr/bin/env python """Django's command-line utility for administrative tasks.""" + import os import sys diff --git a/pyproject.toml b/pyproject.toml index f1e6396..21fad09 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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', ] @@ -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 @@ -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 @@ -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 @@ -136,7 +136,7 @@ fixable = [ "PGH", # No all-purpose "# noqa" and eval validation "PL", # PyLint ] -unfixable = [] +lint.unfixable = [] exclude = [ ".bzr",