From e063e20d88bcb5aa5ef6adf4f74c4161633b1482 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 7 May 2024 00:48:59 +0200 Subject: [PATCH] chore: pyproject.toml: dependencies = ["packaging>=24.0"] (#250) Fixes: #249 --- pyproject.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2fde8b2f..539d2407 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,8 +12,7 @@ description = "A fork of the GYP build system for use in the Node.js projects" readme = "README.md" license = { file="LICENSE" } requires-python = ">=3.8" -# The Python module "packaging" is vendored in the "pylib/packaging" directory to support Python >= 3.12. -# dependencies = ["packaging>=23.1"] # Uncomment this line if the vendored version is removed. +dependencies = ["packaging>=24.0"] classifiers = [ "Development Status :: 3 - Alpha", "Environment :: Console", @@ -29,7 +28,7 @@ classifiers = [ ] [project.optional-dependencies] -dev = ["flake8", "ruff == 0.4.3", "pytest"] +dev = ["pytest", "ruff"] [project.scripts] gyp = "gyp:script_main"