From b58738b08a712fed08f08193b6cee00498586f16 Mon Sep 17 00:00:00 2001 From: andrew000 <11490628+andrew000@users.noreply.github.com> Date: Sun, 27 Oct 2024 18:54:05 +0200 Subject: [PATCH] Fix PyPi publish `Verify wheel installation` command --- .github/workflows/pypi-release.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index 11a38ef..22a438b 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -35,11 +35,7 @@ jobs: run: uv build - name: Verify wheel installation - run: uv run --verbose \ - --with ./dist/$(find ./dist/*.whl -printf "%f") \ - --no-project \ - --refresh-package ftl_extract -- \ - python -c "import ftl_extract; print(ftl_extract.__version__)" + run: uv run --verbose --with ./dist/$(find ./dist/*.whl -printf "%f") --no-project --refresh-package ftl_extract -- python -c "import ftl_extract; print(ftl_extract.__version__)" - name: 🐍 Publish distribution 📦 run: uv publish