From c23d8dddb2519a77da1a7df3ca95020dcadccb7f Mon Sep 17 00:00:00 2001 From: Windel Bouwman Date: Tue, 18 Jun 2024 22:35:48 +0200 Subject: [PATCH] CI --- .github/workflows/main.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 10ada0f..f9fcb66 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,7 +21,8 @@ jobs: with: python-version: '3.10' cache: 'pip' - - run: pip install aqtinstall + - name: Install aqtinstall + run: pip install aqtinstall - name: Install Qt uses: jurplel/install-qt-action@v4 with: @@ -31,6 +32,8 @@ jobs: extra: '--base http://mirrors.ocf.berkeley.edu/qt/' - name: Setup MSVC uses: ilammy/msvc-dev-cmd@v1 - - run: pip install build py-build-cmake - # - name: Build wheels + - name: Install wheel build tools + run: pip install build py-build-cmake + - name: Build wheels + run: python -m build --no-isolation --wheel # uses: pypa/cibuildwheel@v2.19.1