From 715dd71f5cb81c432a5d3e941ffce51e952aa022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Richard=20H=C3=B6chenberger?= Date: Thu, 7 Dec 2023 19:05:51 +0100 Subject: [PATCH] Remove check-manifest --- .github/workflows/unit_tests.yml | 2 +- Makefile | 8 ++------ pyproject.toml | 9 +-------- 3 files changed, 4 insertions(+), 15 deletions(-) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index da547f1b1..18df2faee 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -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 diff --git a/Makefile b/Makefile index 844390af4..b2c475795 100755 --- a/Makefile +++ b/Makefile @@ -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 @@ -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/ @@ -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" diff --git a/pyproject.toml b/pyproject.toml index 34970cb36..c668dec26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [