From 680b4d0e3bc7badf7f8d743d75a1bc141b2d1f1c Mon Sep 17 00:00:00 2001 From: slush Date: Tue, 26 Nov 2024 15:07:14 -0600 Subject: [PATCH] fix: updates setuptools to version compatible with PEP-625 --- pyproject.toml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 46ced0756d..74bd846f32 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools>=51.1.1", "wheel", "setuptools_scm[toml]>=5.0,<8"] +requires = ["setuptools>=70.2.0", "wheel", "setuptools_scm[toml]>=5.0"] [tool.mypy] exclude = ["build/", "dist/", "docs/", "tests/integration/cli/projects/"] diff --git a/setup.py b/setup.py index 37ae1886f4..a75e134b0f 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ ], "doc": ["sphinx-ape"], "release": [ # `release` GitHub Action job uses this - "setuptools", # Installation tool + "setuptools==70.2.0", # Installation tool "wheel", # Packaging tool "twine==3.8.0", # Package upload tool ],