From a04d0697f5630ac97944e20e6da4080ece8ddb3b Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Sun, 19 May 2024 10:04:36 +0200 Subject: [PATCH] ci: Remove MANIFEST check from CI * Remove check-manifest install in CI workflow. * Remove MANIFEST check step from CI. --- .github/workflows/test-package.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test-package.yml b/.github/workflows/test-package.yml index 0ee3af78..4ab664e9 100644 --- a/.github/workflows/test-package.yml +++ b/.github/workflows/test-package.yml @@ -24,16 +24,12 @@ jobs: with: python-version: '3.x' - - name: Install python-build, check-manifest, and twine + - name: Install python-build and twine run: | python -m pip install --upgrade pip setuptools wheel - python -m pip install build check-manifest twine + python -m pip install build twine python -m pip list - - name: Check MANIFEST - run: | - check-manifest --verbose - - name: Build a wheel and a sdist run: | python -m build --outdir dist/ .