From 6f26120640bf48a052409e41d3796486868f45dd Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sat, 14 Mar 2026 15:36:42 -0500 Subject: [PATCH] fix: remove version pin for setuptools dependency since pyramid 2.1 now specifies the pin cf. https://docs.pylonsproject.org/projects/pyramid/en/2.1-branch/changes.html#a1-2026-02-25 --- pyproject.toml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2613603..535ddf9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,11 +52,6 @@ dependencies = [ # can address a new bug that showed up in SA 2.1.0b1 # cf. https://github.com/kvesteri/sqlalchemy-utils/issues/800 "SQLAlchemy<2.1", - - # nb. this must be pinned for now, until pyramid can remove - # its dependency on pkg_resources. - # cf. https://github.com/Pylons/pyramid/issues/3731 - "setuptools<81", ]