From c14365f942e9941a3a298afd8d67934fda7d7a47 Mon Sep 17 00:00:00 2001 From: Neil McDonald Date: Mon, 7 Apr 2025 13:52:28 +1200 Subject: [PATCH] build(deps): expand `python-gitlab` dependency to include `v5.0.0` The primary change from `v4` to `v5` in this dependency was the removal of identified support for `Python 3.8`. Since we still support `Python 3.8`, then we need to maintain the flexibility for 3.8 package managers to install `v4` while allowing more modern projects to use the new features of `v5` along side `python-semantic-release`. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 64f665d0b..0b3fa17dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ dependencies = [ "gitpython ~= 3.0", "requests ~= 2.25", "jinja2 ~= 3.1", - "python-gitlab ~= 4.0", + "python-gitlab >= 4.0.0, < 6.0.0", "tomlkit ~= 0.11", "dotty-dict ~= 1.3", "importlib-resources ~= 6.0",