From 7196b870f3c61417e09e9b98ac4d2452384150f9 Mon Sep 17 00:00:00 2001 From: FeliPython Date: Sat, 14 Sep 2024 10:11:37 -0300 Subject: [PATCH] Remove build-system section from pyproject.toml The build-system configuration for hatchling has been removed. This change may require updating the build process or ensuring compatibility with other tools or configurations. --- pyproject.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index dbeff45..b132f21 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,9 +13,6 @@ dependencies = [ "taskipy>=1.13.0", ] -[build-system] -requires = ["hatchling"] -build-backend = "hatchling.build" [tool.taskipy.tasks] docs = { cmd = "mkdocs serve", help = "run documentation server" }