From 56f7390d8b6a6a38513caa4662ab1063ed407c81 Mon Sep 17 00:00:00 2001 From: Kyle Ferreira Date: Wed, 25 Jun 2025 11:36:06 -0400 Subject: [PATCH 1/3] chore: bump setuprools version to 78.1.1 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 834ac7750..44448cc43 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ deps = [ "webtest==3.0.0", - "setuptools==75.7.0", + "setuptools==78.1.1", "flask==2.3.3", "requests==2.32.3", "jinja2==3.1.6", From 8f0ce513d6dad428f165ce74e9c2b1d10aa8fcce Mon Sep 17 00:00:00 2001 From: Kyle Ferreira Date: Wed, 25 Jun 2025 11:38:29 -0400 Subject: [PATCH 2/3] add changes --- CHANGES.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.rst b/CHANGES.rst index 8c98924e2..81b8b983c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -29,6 +29,7 @@ fixes: - fix: add missing py 3.13 in tox (#1731) - fix: add filter to tar extract (#1730) - refactor: use importlib to find plugins in entry_points (#1669, #1733) +- chore: bump setuptools to 78.1.1 (#1734) v6.2.0 (2024-01-01) From 3187e0e890808183bc76975e5d71968348dcbd11 Mon Sep 17 00:00:00 2001 From: Kyle Ferreira Date: Wed, 25 Jun 2025 11:56:51 -0400 Subject: [PATCH 3/3] chaged to version to >=78.1.1 --- CHANGES.rst | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 81b8b983c..ff06d7fe5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -29,7 +29,7 @@ fixes: - fix: add missing py 3.13 in tox (#1731) - fix: add filter to tar extract (#1730) - refactor: use importlib to find plugins in entry_points (#1669, #1733) -- chore: bump setuptools to 78.1.1 (#1734) +- chore: bump setuptools to >=78.1.1 (#1734) v6.2.0 (2024-01-01) diff --git a/setup.py b/setup.py index 44448cc43..ba8568af5 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ deps = [ "webtest==3.0.0", - "setuptools==78.1.1", + "setuptools>=78.1.1", "flask==2.3.3", "requests==2.32.3", "jinja2==3.1.6",