From 954e4cc4ab3f6f1be6925b741dba42a0fd34e3f6 Mon Sep 17 00:00:00 2001 From: Justin Flannery Date: Sun, 2 Aug 2026 21:09:28 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Move=20build-system=20lower?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- template/pyproject.toml | 8 ++++---- tests/example-project/pyproject.toml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/template/pyproject.toml b/template/pyproject.toml index c69e502..dbb8fe1 100644 --- a/template/pyproject.toml +++ b/template/pyproject.toml @@ -1,7 +1,3 @@ -[build-system] -requires = ["hatchling"] -build-backend = "hatchling.build" - [project] name = "{{ package_name }}" version = "{{ version }}" @@ -148,3 +144,7 @@ known-first-party = ["{{ project_slug }}"] [tool.ruff.lint.pydocstyle] convention = "numpy" + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" diff --git a/tests/example-project/pyproject.toml b/tests/example-project/pyproject.toml index d50b0ee..82d7216 100644 --- a/tests/example-project/pyproject.toml +++ b/tests/example-project/pyproject.toml @@ -1,7 +1,3 @@ -[build-system] -requires = ["hatchling"] -build-backend = "hatchling.build" - [project] name = "example-project" version = "0.1.0" @@ -146,3 +142,7 @@ known-first-party = ["example_project"] [tool.ruff.lint.pydocstyle] convention = "numpy" + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build"