Skip to content

Commit 28ab5b2

Browse files
fix: drop check-manifest
1 parent 781cc75 commit 28ab5b2

File tree

3 files changed

+0
-33
lines changed

3 files changed

+0
-33
lines changed

.github/workflows/lint-test.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -193,10 +193,6 @@ jobs:
193193
run: |
194194
nox -s slotscheck
195195
196-
- name: Run check-manifest
197-
if: (success() || failure()) && steps.setup.outcome == 'success'
198-
run: nox -s check-manifest
199-
200196
# This only runs if the previous steps were successful, no point in running it otherwise
201197
- name: Try building package
202198
run: |

noxfile.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
nox.options.reuse_venv = "yes"
2424
nox.options.sessions = [
2525
"lint",
26-
"check-manifest",
2726
"slotscheck",
2827
"pyright",
2928
"test",
@@ -146,13 +145,6 @@ def lint(session: nox.Session) -> None:
146145
session.run("pre-commit", "run", "--all-files", *session.posargs)
147146

148147

149-
@nox.session(name="check-manifest")
150-
def check_manifest(session: nox.Session) -> None:
151-
"""Run check-manifest."""
152-
install_deps(session, project=False, groups=["tools"])
153-
session.run("check-manifest", "-v")
154-
155-
156148
@nox.session
157149
def slotscheck(session: nox.Session) -> None:
158150
"""Run slotscheck."""

pyproject.toml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ nox = [
7474
tools = [
7575
"pre-commit~=3.0",
7676
"slotscheck~=0.16.4",
77-
"check-manifest==0.49",
7877
"ruff==0.12.12",
7978
]
8079
changelog = [
@@ -451,23 +450,3 @@ exclude_lines = [
451450
"^\\s*raise NotImplementedError$",
452451
"^\\s*\\.\\.\\.$",
453452
]
454-
455-
456-
[tool.check-manifest]
457-
ignore = [
458-
# CI
459-
".pre-commit-config.yaml",
460-
".readthedocs.yml",
461-
".libcst.codemod.yaml",
462-
"noxfile.py",
463-
# docs
464-
"CONTRIBUTING.md",
465-
"RELEASE.md",
466-
"assets/**",
467-
"changelog/**",
468-
"docs/**",
469-
"examples/**",
470-
# tests
471-
"tests/**",
472-
"scripts/**",
473-
]

0 commit comments

Comments
 (0)