Skip to content

Commit

Permalink
Merge branch 'master' into scipy.__init__
Browse files Browse the repository at this point in the history
  • Loading branch information
jorenham authored Sep 4, 2024
2 parents e04fd8a + d3f9725 commit e66cecb
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 64 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ jobs:
- name: ruff check
run: poetry run ruff check --output-format=github

- name: basedpyright --verifytypes
- name: basedpyright --verifytypes --ignoreexternal
run: poetry run basedpyright --ignoreexternal --verifytypes scipy-stubs

# TODO: don't continue on error
- name: basedpyright --verifytypes
run: poetry run basedpyright --verifytypes scipy-stubs
run: poetry run basedpyright --level error --verifytypes scipy-stubs
continue-on-error: true

# TODO: don't continue on error
Expand Down
121 changes: 61 additions & 60 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ scipy = "^1.14.1"

[tool.poetry.group.lint.dependencies]
basedmypy = "^2.6.0"
basedpyright = "^1.17.1"
basedpyright = "^1.17.2"
ruff = "^0.6.3"

[tool.poetry.group.dev.dependencies]
poethepoet = "^0.27.0"
poethepoet = "^0.28.0"
pre-commit = "^3.8.0"

[tool.mypy]
Expand All @@ -52,6 +52,8 @@ warn_unused_ignores = true

[tool.pyright]
include = ["scipy-stubs"]
exclude = [".cache"]
ignore = [".venv"]
pythonPlatform = "All"
pythonVersion = "3.10"
stubPath = "."
Expand Down

0 comments on commit e66cecb

Please sign in to comment.