Skip to content

Commit 8598dc9

Browse files
authored
⬆️ bump ruff to 0.9.10 (#294)
1 parent 85b4872 commit 8598dc9

File tree

2 files changed

+31
-42
lines changed

2 files changed

+31
-42
lines changed

pyproject.toml

+7-18
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ classifiers = [
2727
"Typing :: Typed",
2828
]
2929
packages = [
30+
{include = "src/_numtype"},
3031
{include = "src/numpy-stubs"},
3132
{include = "src/numtype"},
32-
{include = "src/_numtype"},
3333
]
3434
requires-python = ">=3.10"
3535
dependencies = []
@@ -48,22 +48,19 @@ dependencies = []
4848
dev = [
4949
"basedpyright>=1.28.1",
5050
"mypy>=1.15.0",
51-
"pytest>=8.3.4",
52-
"ruff>=0.9.9",
51+
"pytest>=8.3.5",
52+
"ruff>=0.9.10",
5353
]
5454
numpy = ["numtype[numpy]"]
5555
orjson = ["orjson>=3.10.15"] # speeds up mypy cache, but is missing 3.13t wheels
5656

57+
5758
[tool.uv]
5859
default-groups = ["dev", "numpy", "orjson"]
5960

6061

6162
[tool.hatch.build]
62-
packages = [
63-
"src/_numtype",
64-
"src/numtype",
65-
"src/numpy-stubs",
66-
]
63+
packages = ["src/_numtype", "src/numtype", "src/numpy-stubs"]
6764

6865
[tool.hatch.build.targets.sdist]
6966
exclude = [
@@ -110,13 +107,7 @@ disable_memoryview_promotion = true
110107

111108

112109
[tool.pyright]
113-
include = [
114-
"src/_numtype",
115-
"src/numtype",
116-
"src/numpy-stubs",
117-
"test",
118-
"tool",
119-
]
110+
include = ["src", "test", "tool"]
120111
ignore = [".venv"]
121112
stubPath = "src"
122113
venvPath = "."
@@ -250,9 +241,7 @@ env_list = ["lint", "test", "pyright", "3.13", "3.12", "3.11", "3.10"]
250241

251242
[tool.tox.env_run_base]
252243
description = "Run stubtest under {base_python}"
253-
commands = [
254-
["uv", "run", "-q", "-p={base_python}", "--active", "tool/stubtest.py", "--concise"],
255-
]
244+
commands = [["uv", "run", "-q", "-p={base_python}", "--active", "tool/stubtest.py"]]
256245

257246
[tool.tox.env.lint]
258247
description = "lint"

uv.lock

+24-24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)