From fa8763f7eec64c7ce4a9dc60ce4461a1db03537d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Mazzucotelli?= Date: Tue, 27 Feb 2024 17:53:15 +0100 Subject: [PATCH] Specify dependency ranges as 'lower than' instead of 'equal wildcard' Some of these projects follow a sponsorware strategy, and the private versions look like a.b.c.x.y.z. Using a wildcard equal prevents selecting these versions with more than 3 numbers in their version. --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 35874a2..46c3aa8 100644 --- a/setup.py +++ b/setup.py @@ -28,9 +28,9 @@ "setuptools_scm", ], install_requires=[ - "mkdocstrings>=0.22.0,==0.22.*", - "griffe>=0.34.0,==0.34.*", - "mkdocs-material>=9.2.1,==9.*", + "mkdocstrings>=0.22,<0.23", + "griffe>=0.34,<0.35", + "mkdocs-material>=9.2,<10", ], include_package_data=True, package_data={