Skip to content

Commit e1befea

Browse files
authored
Merge pull request #398 from MC-kit/devel
Upgrade to numpy-2.0
2 parents 339e0bb + 4a5203d commit e1befea

File tree

3 files changed

+1032
-2029
lines changed

3 files changed

+1032
-2029
lines changed

noxfile.py

+1-8
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
nox.options.sessions = (
2222
"pre-commit",
2323
"mypy",
24+
"ruff-format",
2425
"ruff",
2526
"xdoctest",
2627
"tests",
@@ -152,14 +153,6 @@ def typeguard(s: Session) -> None:
152153
s.run("pytest", "--typeguard-packages=src", *s.posargs, external=True)
153154

154155

155-
@session
156-
def lint(s: Session) -> None:
157-
"""Lint using flake8."""
158-
s.run("poetry", "install", "--no-root", "--only", "flake8", external=True)
159-
args = s.posargs or locations
160-
s.run("flake8", *args)
161-
162-
163156
@session
164157
def mypy(s: Session) -> None:
165158
"""Type-check using mypy."""

0 commit comments

Comments
 (0)