From e16fee25ae00cec3779e7a4d65cf856d5277dc91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Randy=20D=C3=B6ring?= <30527984+radoering@users.noreply.github.com> Date: Sun, 10 Mar 2024 13:48:49 +0100 Subject: [PATCH] temp: use suitable poetry-core version --- poetry.lock | 16 ++++++++++------ pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/poetry.lock b/poetry.lock index 4bd8148cdd6..fa2c178df34 100644 --- a/poetry.lock +++ b/poetry.lock @@ -949,11 +949,15 @@ name = "poetry-core" version = "1.9.0" description = "Poetry PEP 517 Build Backend" optional = false -python-versions = ">=3.8,<4.0" -files = [ - {file = "poetry_core-1.9.0-py3-none-any.whl", hash = "sha256:4e0c9c6ad8cf89956f03b308736d84ea6ddb44089d16f2adc94050108ec1f5a1"}, - {file = "poetry_core-1.9.0.tar.gz", hash = "sha256:fa7a4001eae8aa572ee84f35feb510b321bd652e5cf9293249d62853e1f935a2"}, -] +python-versions = "^3.8" +files = [] +develop = false + +[package.source] +type = "git" +url = "https://github.com/radoering/poetry-core.git" +reference = "pep621-support" +resolved_reference = "32a0b6222c46f3adb03b391039c6cc3d574f35e4" [[package]] name = "poetry-plugin-export" @@ -1599,4 +1603,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "c4f33b204c2c046a54bdb77324bafc194a829b9485ac8bc74ac2948884bef6f1" +content-hash = "90117ec7f0f9f7e09468d3774b1480d157a6459db4985dadbb53860f6eb5d4b5" diff --git a/pyproject.toml b/pyproject.toml index 6e0258713d3..5a45be6e9fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ Changelog = "https://python-poetry.org/history/" [tool.poetry.dependencies] python = "^3.8" -poetry-core = "1.9.0" +poetry-core = { git = "https://github.com/radoering/poetry-core.git", branch = "pep621-support" } poetry-plugin-export = { git = "https://github.com/python-poetry/poetry-plugin-export.git" } build = "^1.0.3" cachecontrol = { version = "^0.14.0", extras = ["filecache"] }