From 89542e5f1be5af492006cbba8daa8c687deaf29c Mon Sep 17 00:00:00 2001 From: Mark Joshwel Date: Sun, 3 Mar 2024 00:30:02 +0000 Subject: [PATCH] poetry: pin pydantic and tomlkit to lowest working versions pydantic>=2.0 and tomlkit>=0.8 respectively --- poetry.lock | 8 ++++---- pyproject.toml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/poetry.lock b/poetry.lock index 6b3f162..2d2be7c 100644 --- a/poetry.lock +++ b/poetry.lock @@ -196,13 +196,13 @@ test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest- [[package]] name = "pydantic" -version = "2.6.2" +version = "2.6.3" description = "Data validation using Python type hints" optional = false python-versions = ">=3.8" files = [ - {file = "pydantic-2.6.2-py3-none-any.whl", hash = "sha256:37a5432e54b12fecaa1049c5195f3d860a10e01bdfd24f1840ef14bd0d3aeab3"}, - {file = "pydantic-2.6.2.tar.gz", hash = "sha256:a09be1c3d28f3abe37f8a78af58284b236a92ce520105ddc91a6d29ea1176ba7"}, + {file = "pydantic-2.6.3-py3-none-any.whl", hash = "sha256:72c6034df47f46ccdf81869fddb81aade68056003900a8724a4f160700016a2a"}, + {file = "pydantic-2.6.3.tar.gz", hash = "sha256:e07805c4c7f5c6826e33a1d4c9d47950d7eaf34868e2690f8594d2e30241f11f"}, ] [package.dependencies] @@ -340,4 +340,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "89c21cf671dd8052d05f7c4d9361473e1343ad92380b92874b032357a73985bf" +content-hash = "bb133f2ce54b98858eac7875ac29a45440f5626def0c74451189876c794edb0b" diff --git a/pyproject.toml b/pyproject.toml index 2e01fcd..ab03da4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tomlantic" -version = "0.1.0-beta" +version = "0.1.0" description = "marrying pydantic models and tomlkit documents" authors = ["Mark Joshwel "] license = "Unlicense" @@ -8,8 +8,8 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.8" -pydantic = "^2.6.2" -tomlkit = "^0.12.4" +pydantic = ">=2.0" +tomlkit = ">=0.8" [tool.poetry.group.dev.dependencies] black = "^24.2.0"