Skip to content

Commit

Permalink
Add version constraint to maturin requirement
Browse files Browse the repository at this point in the history
As suggested by maturin itself:

Warning: Please use maturin in pyproject.toml with a version constraint, e.g. `requires = ["maturin>=1.0,<2.0"]`. This will become an error.
  • Loading branch information
wm75 authored Jan 10, 2025
1 parent 010a1cf commit f009313
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
requires = [
"maturin"
"maturin>=1.0,<2.0"
]
build-backend = "maturin"

Expand Down Expand Up @@ -85,4 +85,4 @@ plotPCA = "deeptools.plotPCA:main"
plotProfile = "deeptools.plotProfile:main"
bamCoverage2 = "deeptools.bamCoverage2:main"
bamCompare2 = "deeptools.bamCompare2:main"
computeMatrix2 = "deeptools.computeMatrix2:main"
computeMatrix2 = "deeptools.computeMatrix2:main"

0 comments on commit f009313

Please sign in to comment.