From 81e540212fe4d76771b2bbe5740237f75f251208 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez-Mondrag=C3=B3n?= Date: Wed, 13 Mar 2024 14:45:22 -0600 Subject: [PATCH] fix: Constrain to known-to-work versions of commitizen --- poetry.lock | 10 +++++----- pyproject.toml | 4 +++- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/poetry.lock b/poetry.lock index 0379a39..2d6dc12 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "argcomplete" @@ -198,13 +198,13 @@ files = [ [[package]] name = "commitizen" -version = "3.18.3" +version = "3.18.1" description = "Python commitizen client tool" optional = false python-versions = ">=3.8" files = [ - {file = "commitizen-3.18.3-py3-none-any.whl", hash = "sha256:864abe3a68328ba16cac5bc2bc9f8225b973bd14957d12716641c5da8dc36d18"}, - {file = "commitizen-3.18.3.tar.gz", hash = "sha256:980eb09abfb27d0d16960a6ca9e40c78b8608205987d8b012e3c09347bc4d35d"}, + {file = "commitizen-3.18.1-py3-none-any.whl", hash = "sha256:829925ff3d0a2f07fae4cdec4214a0c2e391aadf0dd65313b40ad3e866418c70"}, + {file = "commitizen-3.18.1.tar.gz", hash = "sha256:28930493f0a370e23e0e469ea7ec9dcf501be21dd87e8c012497552e5778bc41"}, ] [package.dependencies] @@ -875,4 +875,4 @@ testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more [metadata] lock-version = "2.0" python-versions = ">=3.8" -content-hash = "e22961d483be17d88ca4f2335d80191acc87ba25b9a73ed1cba2eac604fb2a49" +content-hash = "963e629a02a6565e29d6fdaa484146baeed8edfb4303ba3d5d63df19376bb29b" diff --git a/pyproject.toml b/pyproject.toml index 4b96f15..12b7f1b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,9 @@ packages = [ ] [tool.poetry.dependencies] -commitizen = ">=3" +# TODO: Use specific broken versions in this constraint once the upstream issue is fixed +# https://github.com/commitizen-tools/commitizen/issues/1024 +commitizen = ">=3,<3.18.2" python = ">=3.8" PyGithub = ">=1.59.1"