From 24945af82f1f0037a4b1fbbce1bf9f4d58de1364 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bern=C3=A1t=20G=C3=A1bor?= Date: Tue, 7 Feb 2023 11:14:09 -0800 Subject: [PATCH] Bump platformdirs dependency to <4 (#2502) Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Resolves https://github.com/pypa/virtualenv/issues/2499 --- docs/changelog/2499.feature.rst | 1 + pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 docs/changelog/2499.feature.rst diff --git a/docs/changelog/2499.feature.rst b/docs/changelog/2499.feature.rst new file mode 100644 index 000000000..ce4f4e396 --- /dev/null +++ b/docs/changelog/2499.feature.rst @@ -0,0 +1 @@ +Allow platformdirs version ``3`` - by :user:`cdce8p`. diff --git a/pyproject.toml b/pyproject.toml index 789ae3d73..23a824ecc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,9 +39,10 @@ dependencies = [ "distlib<1,>=0.3.6", "filelock<4,>=3.4.1", 'importlib-metadata>=4.8.3; python_version < "3.8"', - "platformdirs<3,>=2.4", + "platformdirs<4,>=2.4", "pytest-testmon@git+https://github.com/tarpas/pytest-testmon#egg=main" ] + optional-dependencies.docs = [ "furo>=2022.12.7", "proselint>=0.13",