Skip to content

Commit

Permalink
Remove check-manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
hoechenberger committed Dec 7, 2023
1 parent 7163741 commit 715dd71
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ruff check-manifest
python -m pip install ruff
- name: Display versions and environment information
run: |
python --version
Expand Down
8 changes: 2 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: all clean-pyc clean-so clean-build clean-ctags clean-cache clean-e clean inplace test check-manifest ruff-check ruff-format pep build-doc dist-build
.PHONY: all clean-pyc clean-so clean-build clean-ctags clean-cache clean-e clean inplace test ruff-check ruff-format pep build-doc dist-build

all: clean inplace pep test build-doc dist-build

Expand Down Expand Up @@ -37,10 +37,6 @@ test:
--ignore mne-python \
--ignore examples

check-manifest:
@echo "Checking MANIFEST.in"
@check-manifest .

ruff-format:
@echo "Running ruff format"
@ruff format mne_bids/
Expand All @@ -51,7 +47,7 @@ ruff-check:
@ruff check mne_bids/
@ruff check examples/ --ignore=D103,D400,D205

pep: ruff-check check-manifest ruff-format
pep: ruff-check ruff-format

build-doc:
@echo "Building documentation"
Expand Down
9 changes: 1 addition & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,7 @@ full = [
]

# Dependencies for running the test infrastructure
test = [
"mne_bids[full]",
"pytest",
"pytest-cov",
"pytest-sugar",
"check-manifest",
"ruff",
]
test = ["mne_bids[full]", "pytest", "pytest-cov", "pytest-sugar", "ruff"]

# Dependencies for building the documentation
doc = [
Expand Down

0 comments on commit 715dd71

Please sign in to comment.