File: 0002-Relax-dependency-on-semantic_version.patch

package info (click to toggle)
python-invocations 4.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 620 kB
  • sloc: python: 2,262; makefile: 3
file content (23 lines) | stat: -rw-r--r-- 687 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From: Antonio Terceiro <terceiro@debian.org>
Date: Tue, 3 Mar 2026 10:55:16 -0300
Subject: Relax dependency on semantic_version

Debian already has 2.10, and it seems to work just fine (at least all
tests pass).
---
 pyproject.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pyproject.toml b/pyproject.toml
index 463ff6b..455613b 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -21,7 +21,7 @@ dependencies = [
     # For envs that don't actually have pip - we use some of its tooling atm.
     "pip~=25.2",
     "releases>=1.6",
-    "semantic_version>=2.4,<2.7",
+    "semantic_version>=2.4",
     "tabulate>=0.7.5",
     "tqdm>=4.8.1",
     "twine>=1.15",