From b7e7a4b474a62a37c07cc90b92a98f9438798d25 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Tue, 16 Sep 2025 19:18:48 +0100 Subject: [PATCH 1/3] Commit --- pyproject.toml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a614351..7955edd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,6 @@ description = "The Sphinx theme for the CPython docs and related projects" readme = "README.md" license = "PSF-2.0" license-files = [ "LICENSE" ] -authors = [ { name = "PyPA", email = "distutils-sig@python.org" } ] requires-python = ">=3.12" classifiers = [ "Development Status :: 5 - Production/Stable", @@ -61,12 +60,6 @@ lint.select = [ "W", # pycodestyle warnings "YTT", # flake8-2020 ] -lint.ignore = [ - "E203", # Whitespace before ':' - "E221", # Multiple spaces before operator - "E226", # Missing whitespace around arithmetic operator - "E241", # Multiple spaces after ',' -] lint.isort.required-imports = [ "from __future__ import annotations" ] [tool.pyproject-fmt] From b8571f7b18cbd088366b37229c57d0e919a93f84 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Wed, 17 Sep 2025 07:37:45 +0100 Subject: [PATCH 2/3] Commit --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 7955edd..b16910f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,6 +10,7 @@ description = "The Sphinx theme for the CPython docs and related projects" readme = "README.md" license = "PSF-2.0" license-files = [ "LICENSE" ] +authors = [ { name = "python-docs-theme maintainers" } ] requires-python = ">=3.12" classifiers = [ "Development Status :: 5 - Production/Stable", From d2db7ffd28df3a3b09ba07d8e0d20d76dcdeb479 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Wed, 17 Sep 2025 18:01:26 +0100 Subject: [PATCH 3/3] Review --- pyproject.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b16910f..e054d1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ description = "The Sphinx theme for the CPython docs and related projects" readme = "README.md" license = "PSF-2.0" license-files = [ "LICENSE" ] -authors = [ { name = "python-docs-theme maintainers" } ] +authors = [ { name = "Python Docs Sphinx Theme maintainers" } ] requires-python = ">=3.12" classifiers = [ "Development Status :: 5 - Production/Stable", @@ -61,6 +61,12 @@ lint.select = [ "W", # pycodestyle warnings "YTT", # flake8-2020 ] +lint.ignore = [ + "E203", # Whitespace before ':' + "E221", # Multiple spaces before operator + "E226", # Missing whitespace around arithmetic operator + "E241", # Multiple spaces after ',' +] lint.isort.required-imports = [ "from __future__ import annotations" ] [tool.pyproject-fmt]