From 23f248c8f7d56be77ca9d27d6a1b816789700daf Mon Sep 17 00:00:00 2001 From: twald Date: Mon, 20 Jan 2025 15:49:44 +0200 Subject: [PATCH] add setuptools --- Pipfile | 1 + setup.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Pipfile b/Pipfile index dc7fb87b5ba..99f155d733b 100644 --- a/Pipfile +++ b/Pipfile @@ -85,6 +85,7 @@ spdx-tools = ">=0.8.0,<0.9.0" license-expression = ">=30.1.0,<31.0.0" rustworkx = ">=0.13.0,<0.14.0" pydantic = ">=2.0.0,<3.0.0" +setuptools = {version = ">=75.8.0", markers="python_version > '3.12'"} [requires] diff --git a/setup.py b/setup.py index d3632e1e95d..402d4590f7e 100644 --- a/setup.py +++ b/setup.py @@ -107,7 +107,8 @@ def run(self) -> None: "spdx-tools>=0.8.0,<0.9.0", "license-expression<31.0.0,>=30.1.0", "rustworkx>=0.13.0,<0.14.0", - "pydantic<3.0.0,>=2.0.0" + "pydantic<3.0.0,>=2.0.0", + "setuptools>=75.8.0; python_version > '3.12'", ], dependency_links=[], # keep it empty, needed for pipenv-setup license="Apache License 2.0",