From b51c05855476275ebd6fcd7f41129319352afc3b Mon Sep 17 00:00:00 2001 From: Nick Murphy Date: Thu, 20 Mar 2025 16:59:43 -0400 Subject: [PATCH 1/4] Specify minimum requirements for dependencies --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 263e0c23836..a23d28ad48c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,10 +46,10 @@ dynamic = [ "version", ] dependencies = [ - "colorama; sys_platform=='win32'", + "colorama>=0.4.0; sys_platform=='win32'", "exceptiongroup>=1.0.0rc8; python_version<'3.11'", - "iniconfig", - "packaging", + "iniconfig>=1.0.0", + "packaging>=20.0", "pluggy>=1.5,<2", "pygments>=2.7.2", "tomli>=1; python_version<'3.11'", From 10cd8dfd945cd5d6ad38ab2fb88d5214e68bf6cd Mon Sep 17 00:00:00 2001 From: Nick Murphy Date: Thu, 20 Mar 2025 17:00:41 -0400 Subject: [PATCH 2/4] Bump minimum requirement of exceptiongroup to 1.0.0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a23d28ad48c..2c22c91a608 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,7 +47,7 @@ dynamic = [ ] dependencies = [ "colorama>=0.4.0; sys_platform=='win32'", - "exceptiongroup>=1.0.0rc8; python_version<'3.11'", + "exceptiongroup>=1.0.0; python_version<'3.11'", "iniconfig>=1.0.0", "packaging>=20.0", "pluggy>=1.5,<2", From edd35515178c325cf9fb810be8dff161639a9b5c Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 20 Mar 2025 21:45:08 +0000 Subject: [PATCH 3/4] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2c22c91a608..94a1b78d009 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,10 +46,10 @@ dynamic = [ "version", ] dependencies = [ - "colorama>=0.4.0; sys_platform=='win32'", - "exceptiongroup>=1.0.0; python_version<'3.11'", - "iniconfig>=1.0.0", - "packaging>=20.0", + "colorama>=0.4; sys_platform=='win32'", + "exceptiongroup>=1; python_version<'3.11'", + "iniconfig>=1", + "packaging>=20", "pluggy>=1.5,<2", "pygments>=2.7.2", "tomli>=1; python_version<'3.11'", From 9cca335c2edddc0ccce4f5d7ee90b634babeb279 Mon Sep 17 00:00:00 2001 From: Nick Murphy Date: Thu, 20 Mar 2025 17:48:47 -0400 Subject: [PATCH 4/4] Add changelog entry --- changelog/13317.packaging.rst | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 changelog/13317.packaging.rst diff --git a/changelog/13317.packaging.rst b/changelog/13317.packaging.rst new file mode 100644 index 00000000000..94171cb1ef3 --- /dev/null +++ b/changelog/13317.packaging.rst @@ -0,0 +1,4 @@ +Specified minimum allowed versions of ``colorama``, ``iniconfig``, +and ``packaging``; and bumped the minimum allowed version +of ``exceptiongroup`` for ``python_version<'3.11'`` from a release +candidate to a full release.