From c5a0ed4c6f81187fdaa0d8a7ac4435bb8c461e81 Mon Sep 17 00:00:00 2001 From: Neil Girdhar Date: Sat, 7 Aug 2021 11:29:21 -0400 Subject: [PATCH] Update packaging requirement to support 21.0 --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 73ede4fd24a..6e29eac9e89 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,9 +43,11 @@ html5lib = "^1.0" shellingham = "^1.1" tomlkit = ">=0.7.0,<1.0.0" pexpect = "^4.7.0" -packaging = "^20.4" +# Leave unclamped since packaging doesn't follow semantic versioning. +packaging = ">=20.4" # exclude 20.4.5 - 20.4.6 due to https://github.com/pypa/pip/issues/9953 virtualenv = "(>=20.4.3,<20.4.5 || >=20.4.7)" +# Leave unclamped since keyring doesn't follow semantic versioning. keyring = ">=21.2.0" entrypoints = "^0.3" importlib-metadata = {version = "^1.6.0", python = "<3.8"}