From d03720aeb1572c3cb97b4e8599320d4a0903e560 Mon Sep 17 00:00:00 2001 From: Sam <78538841+spwoodcock@users.noreply.github.com> Date: Wed, 6 Nov 2024 21:44:54 +0000 Subject: [PATCH] build: more flexible pinning of `packaging` dep with `>=` devs downstream should have the flexibility to pin as they need. We can't predict if a future version of `packaging` will have breaking changes, so shouldn't be restrictive --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ba1d379..890666e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ classifiers = [ "Programming Language :: Python :: 3.13", ] dependencies = [ - "packaging~=24.1", + "packaging>=23.1", ] [tool.isort]