Skip to content

Commit b4b12ce

Browse files
no more check-manifest
1 parent 650ab6d commit b4b12ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

noxfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __post_init__(self) -> None:
7777
ExecutionGroup(
7878
sessions=("pyright",),
7979
python=python,
80-
pyright_paths=("disnake", "tests", "examples", "noxfile.py", "setup.py"),
80+
pyright_paths=("disnake", "tests", "examples", "noxfile.py"),
8181
project=True,
8282
# FIXME: orjson doesn't yet support python 3.14, remove once we migrate to uv and have version-specific locks
8383
extras=("speed", "voice") if python not in EXPERIMENTAL_PYTHON_VERSIONS else ("voice",),
@@ -100,7 +100,7 @@ def __post_init__(self) -> None:
100100
),
101101
# the other sessions, they don't need pyright, but they need to run
102102
ExecutionGroup(
103-
sessions=("lint", "slotscheck", "check-manifest"),
103+
sessions=("lint", "slotscheck"),
104104
groups=("tools",),
105105
),
106106
# build
@@ -261,7 +261,7 @@ def slotscheck(session: nox.Session) -> None:
261261
session.run("python", "-m", "slotscheck", "--verbose", "-m", "disnake")
262262

263263

264-
@nox.session(requires=["check-manifest"])
264+
@nox.session()
265265
def build(session: nox.Session) -> None:
266266
"""Build a dist."""
267267
install_deps(session)

0 commit comments

Comments
 (0)