From b568383c68574d6055b0fe3ecd06cd937ee9821e Mon Sep 17 00:00:00 2001 From: codejedi365 Date: Sun, 2 Nov 2025 13:22:51 -0700 Subject: [PATCH 1/2] build(deps-build): tighten `tomlkit` requirement since its a 0-prefixed version --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 45c9c2ea1..b17c326fd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ dependencies = [ "requests ~= 2.25", "jinja2 ~= 3.1", "python-gitlab >= 4.0.0, < 7.0.0", - "tomlkit ~= 0.11", + "tomlkit ~= 0.11.0", "dotty-dict ~= 1.3", "importlib-resources ~= 6.0", "pydantic ~= 2.0", @@ -52,7 +52,8 @@ repository = "http://github.com/python-semantic-release/python-semantic-release. [project.optional-dependencies] build = [ - "build ~= 1.2" + "build ~= 1.2", + "tomlkit ~= 0.11.0", ] docs = [ "Sphinx ~= 7.4", From 6ce7e247a73e9f4b3a4a551adc445d3b3c760cc3 Mon Sep 17 00:00:00 2001 From: codejedi365 Date: Sun, 2 Nov 2025 13:30:20 -0700 Subject: [PATCH 2/2] build(deps): bump `tomlkit` dependency from ~=0.11.0 to ~=0.13.0 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b17c326fd..0defd32c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ dependencies = [ "requests ~= 2.25", "jinja2 ~= 3.1", "python-gitlab >= 4.0.0, < 7.0.0", - "tomlkit ~= 0.11.0", + "tomlkit ~= 0.13.0", "dotty-dict ~= 1.3", "importlib-resources ~= 6.0", "pydantic ~= 2.0", @@ -53,7 +53,7 @@ repository = "http://github.com/python-semantic-release/python-semantic-release. [project.optional-dependencies] build = [ "build ~= 1.2", - "tomlkit ~= 0.11.0", + "tomlkit ~= 0.13.0", ] docs = [ "Sphinx ~= 7.4",