Skip to content

Commit 206ef97

Browse files
committed
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.
1 parent dc5c47f commit 206ef97

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
"setuptools_scm",
2929
],
3030
install_requires=[
31-
"mkdocstrings>=0.22.0,==0.22.*",
32-
"griffe>=0.34.0,==0.34.*",
33-
"mkdocs-material>=9.2.1,==9.*",
31+
"mkdocstrings>=0.22,<0.23",
32+
"griffe>=0.34,<0.35",
33+
"mkdocs-material>=9.2,<10",
3434
],
3535
include_package_data=True,
3636
package_data={

0 commit comments

Comments
 (0)