Skip to content

Commit 60a4be9

Browse files
fix: remove check-manifest
1 parent 27cb9ad commit 60a4be9

File tree

3 files changed

+0
-35
lines changed

3 files changed

+0
-35
lines changed

.github/workflows/lint-test.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,6 @@ jobs:
136136
if: (success() || failure()) && steps.setup.outcome == 'success'
137137
run: nox -s slotscheck
138138

139-
- name: Run check-manifest
140-
if: (success() || failure()) && steps.setup.outcome == 'success'
141-
run: nox -s check-manifest
142-
143139
# This only runs if the previous steps were successful, no point in running it otherwise
144140
- name: Try building package
145141
run: |

noxfile.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
nox.options.reuse_existing_virtualenvs = True
3131
nox.options.sessions = [
3232
"lint",
33-
"check-manifest",
3433
"slotscheck",
3534
"pyright",
3635
"test",
@@ -82,15 +81,6 @@ def lint(session: nox.Session) -> None:
8281

8382
session.run("pre-commit", "run", "--all-files", *session.posargs)
8483

85-
86-
@nox.session(name="check-manifest")
87-
def check_manifest(session: nox.Session) -> None:
88-
"""Run check-manifest."""
89-
# --no-self is provided here because check-manifest builds disnake. There's no reason to build twice, so we don't.
90-
session.run_always("pdm", "install", "--no-self", "-dG", "tools", external=True)
91-
session.run("check-manifest", "-v")
92-
93-
9484
@nox.session()
9585
def slotscheck(session: nox.Session) -> None:
9686
"""Run slotscheck."""

pyproject.toml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ tools = [
7272
"pre-commit~=3.0",
7373
"slotscheck~=0.16.4",
7474
"python-dotenv~=1.0.0",
75-
"check-manifest==0.49",
7675
"ruff==0.9.3",
7776
"versioningit>=3.3.0",
7877
]
@@ -439,23 +438,3 @@ exclude_lines = [
439438
"^\\s*\\.\\.\\.$",
440439
]
441440

442-
443-
[tool.check-manifest]
444-
ignore = [
445-
# CI
446-
".pre-commit-config.yaml",
447-
".readthedocs.yml",
448-
".libcst.codemod.yaml",
449-
"noxfile.py",
450-
# docs
451-
"CONTRIBUTING.md",
452-
"RELEASE.md",
453-
"assets/**",
454-
"changelog/**",
455-
"docs/**",
456-
"examples/**",
457-
# tests
458-
"test_bot/**",
459-
"tests/**",
460-
"scripts/**",
461-
]

0 commit comments

Comments
 (0)