From 0330ae3dc4184db515e2d4ed61ff83fe299bb374 Mon Sep 17 00:00:00 2001 From: Bjorn Neergaard Date: Tue, 22 Nov 2022 09:19:54 -0700 Subject: [PATCH] chore: bump poetry-core to ^1.4.0 Also correctly specify trove-classifiers as calver. --- poetry.lock | 2 +- pyproject.toml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/poetry.lock b/poetry.lock index af274c20bd3..12a67d7a018 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1807,4 +1807,4 @@ testing = ["flake8 (<5)", "func-timeout", "jaraco.functools", "jaraco.itertools" [metadata] lock-version = "2.0" python-versions = "^3.7" -content-hash = "c2607df5992f1075a9a0d1a067e8e935a32e65dac79f0a2445e0c619b08883c7" +content-hash = "728bc093f740faad6db2b3a1c7a61ea05ca6c6a998b1f144f071cdea5a3b2771" diff --git a/pyproject.toml b/pyproject.toml index d0257a59230..e560237fdea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,7 +47,7 @@ generate-setup-file = false [tool.poetry.dependencies] python = "^3.7" -poetry-core = "^1.3.2" +poetry-core = "^1.4.0" poetry-plugin-export = "^1.2.0" "backports.cached-property" = { version = "^1.0.2", python = "<3.8" } cachecontrol = { version = "^0.12.9", extras = ["filecache"] } @@ -70,7 +70,8 @@ shellingham = "^1.5" tomli = { version = "^2.0.1", python = "<3.11" } # exclude 0.11.2 and 0.11.3 due to https://github.com/sdispater/tomlkit/issues/225 tomlkit = ">=0.11.1,<1.0.0,!=0.11.2,!=0.11.3" -trove-classifiers = "^2022.5.19" +# trove-classifiers uses calver, so version is unclamped +trove-classifiers = ">=2022.5.19" # 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.6" xattr = { version = "^0.10.0", markers = "sys_platform == 'darwin'" }