Skip to content

Commit 7a2f2b1

Browse files
fix: drop check-manifest
1 parent 332e4c8 commit 7a2f2b1

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
@@ -187,10 +187,6 @@ jobs:
187187
if: (success() || failure()) && steps.setup.outcome == 'success'
188188
run: nox -s slotscheck
189189

190-
- name: Run check-manifest
191-
if: (success() || failure()) && steps.setup.outcome == 'success'
192-
run: nox -s check-manifest
193-
194190
# This only runs if the previous steps were successful, no point in running it otherwise
195191
- name: Try building package
196192
run: |

noxfile.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
nox.options.reuse_venv = "yes"
2323
nox.options.sessions = [
2424
"lint",
25-
"check-manifest",
2625
"slotscheck",
2726
"pyright",
2827
"test",
@@ -114,13 +113,6 @@ def lint(session: nox.Session) -> None:
114113
session.run("pre-commit", "run", "--all-files", *session.posargs)
115114

116115

117-
@nox.session(name="check-manifest")
118-
def check_manifest(session: nox.Session) -> None:
119-
"""Run check-manifest."""
120-
install_deps(session, project=False, groups=["tools"])
121-
session.run("check-manifest", "-v")
122-
123-
124116
@nox.session
125117
def slotscheck(session: nox.Session) -> None:
126118
"""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 = [
@@ -447,23 +446,3 @@ exclude_lines = [
447446
"^\\s*raise NotImplementedError$",
448447
"^\\s*\\.\\.\\.$",
449448
]
450-
451-
452-
[tool.check-manifest]
453-
ignore = [
454-
# CI
455-
".pre-commit-config.yaml",
456-
".readthedocs.yml",
457-
".libcst.codemod.yaml",
458-
"noxfile.py",
459-
# docs
460-
"CONTRIBUTING.md",
461-
"RELEASE.md",
462-
"assets/**",
463-
"changelog/**",
464-
"docs/**",
465-
"examples/**",
466-
# tests
467-
"tests/**",
468-
"scripts/**",
469-
]

0 commit comments

Comments
 (0)