Skip to content

Commit ae9891e

Browse files
authored
Merge pull request #839 from numpy:bump-dev-deps
⬆️ update development dependencies
2 parents a8636d5 + 99e1075 commit ae9891e

File tree

3 files changed

+227
-199
lines changed

3 files changed

+227
-199
lines changed

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["uv_build>=0.9.17,<0.11.0"]
2+
requires = ["uv_build>=0.10,<0.11"]
33
build-backend = "uv_build"
44

55
[tool.uv.build-backend]
@@ -46,7 +46,7 @@ Changelog = "https://github.com/numpy/numtype/releases"
4646
numpy = ["numtype[numpy]"]
4747
lint = [
4848
"dprint-py>=0.51.1.0",
49-
"ruff>=0.15.0",
49+
"ruff>=0.15.1",
5050
]
5151
pytest = [
5252
{ include-group = "numpy" },
@@ -59,13 +59,13 @@ list_and_test = [
5959
]
6060
types = [
6161
{ include-group = "pytest" },
62-
"types-setuptools>=80.10.0.20260124",
62+
"types-setuptools>=82.0.0.20260210",
6363
"types-tabulate>=0.9.0.20241207",
6464
]
6565
basedpyright = [
6666
{ include-group = "numpy" },
6767
{ include-group = "types" },
68-
"basedpyright==1.37.4",
68+
"basedpyright==1.38.0",
6969
]
7070
mypy = [
7171
{ include-group = "types" },
@@ -81,7 +81,7 @@ docs = [
8181
"markdown-callouts>=0.4.0",
8282
"mkdocs-include-markdown-plugin>=7.2.1",
8383
"mkdocs-minify-plugin>=0.8.0",
84-
"mkdocstrings[python]>=1.0.2",
84+
"mkdocstrings[python]>=1.0.3",
8585
"pygments>=2.19.2",
8686
]
8787
dev = [

tool/_ruff.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ def find_ruff_bin() -> str: ...
88

99
else:
1010
# see https://github.com/astral-sh/ruff/pull/18224
11-
from ruff.__main__ import ( # type: ignore[import-untyped]
12-
find_ruff_bin, # noqa: PLC2701
13-
)
11+
from ruff.__main__ import find_ruff_bin # type: ignore[import-untyped]
1412

1513

1614
def ruff_format(source: str) -> str:

0 commit comments

Comments
 (0)