From ff97aab8ad43e140b0c2df8415dbcce7713a146f Mon Sep 17 00:00:00 2001 From: John Demme Date: Thu, 25 Jul 2024 18:51:12 +0200 Subject: [PATCH] [PyCDE] Fix publishing workflow --- .github/workflows/pycdePublish.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pycdePublish.yml b/.github/workflows/pycdePublish.yml index ede6708b667a..1f4d3775de6a 100644 --- a/.github/workflows/pycdePublish.yml +++ b/.github/workflows/pycdePublish.yml @@ -7,7 +7,6 @@ on: workflow_dispatch: jobs: - # --------------------------------------------------------------------------- # Build and test Linux wheels. Run the CIRCT tests also. # --------------------------------------------------------------------------- @@ -81,7 +80,6 @@ jobs: retention-days: 7 if-no-files-found: error - # --------------------------------------------------------------------------- # Build and test Windows wheels. # --------------------------------------------------------------------------- @@ -126,8 +124,8 @@ jobs: - name: Install dependencies run: | - python3 -m pip install --upgrade pip - python3 -m pip install cibuildwheel twine + python -m pip install --upgrade pip + python -m pip install cibuildwheel twine choco install ninja - name: Build wheel @@ -158,7 +156,6 @@ jobs: retention-days: 7 if-no-files-found: error - # --------------------------------------------------------------------------- # If both the Linux and Windows builds are successful, push the wheels to # pypi. Only do this on the main branch or a tag.