Skip to content

Commit

Permalink
Specify dependency ranges as 'lower than' instead of 'equal wildcard'
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
pawamoy committed Feb 27, 2024
1 parent dc5c47f commit fa8763f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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={
Expand Down

0 comments on commit fa8763f

Please sign in to comment.