From dd6f65aa8afd9aa18d50193dcd6cf51e186856c5 Mon Sep 17 00:00:00 2001 From: Hal Blackburn Date: Fri, 13 Sep 2024 07:58:41 +0000 Subject: [PATCH] chore: list packaging as a runtime dependency We use packaging.version to parse/represent software version numbers. --- poetry.lock | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 3038877..070619c 100644 --- a/poetry.lock +++ b/poetry.lock @@ -845,4 +845,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "968e8790d348f045e5c6cdeef525dba0ff70327dfc9ce05c6ae49ac6ce40f66d" +content-hash = "c0b7201c46eb811db6543888847044a6f62b59a5afafa94c0701c1799ecdd5b2" diff --git a/pyproject.toml b/pyproject.toml index dd04c65..3986bad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,6 +8,7 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.9" +packaging = ">=14.5" # this version introduces the VERSION_PATTERN constant [tool.poetry.group.dev.dependencies] exceptiongroup = { version = "^1", python = "<3.11" }