Skip to content

Commit

Permalink
Update pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
dcajasn committed Feb 11, 2025
1 parent e20ef2c commit e21117d
Showing 1 changed file with 22 additions and 7 deletions.
29 changes: 22 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
[tool.ruff]
# The minimum Python version that should be supported
target-version = "py39"

[tool.ruff.lint]
select = [
"E",
"F",
"I",
"NPY201",
"W605", # Check for invalid escape sequences in docstrings (errors in py >= 3.11)
]

ignore = [
"E721" # Do not compare types, use 'isinstance()'
]

[build-system]
requires = [
"oldest-supported-numpy",
"numpy >= 2.0.0",
"scipy >= 1.13.0",
"setuptools >= 68.1.0",
"wheel",
"pybind11>=2.10.1",
"scipy >= 1.1.0",
"setuptools>68.1.0",
"wheel"
]

target-version = "py39"
]

0 comments on commit e21117d

Please sign in to comment.