From 3edeff4727cf71ef271da0f14a55716992b00a28 Mon Sep 17 00:00:00 2001 From: "Joshua D. Boyd" Date: Sat, 13 Jan 2024 14:51:06 -0500 Subject: [PATCH] CHange build-macos action to stop calling setup.py. --- .github/workflows/build-macos.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 3a5ae1a..479b2ae 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -28,14 +28,13 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - architecture: x64 +# architecture: x64 - name: Build wheel env: LZO_DIR: ./lzo-2.10 run: | - python -m pip install -U pip - python -m pip install -U wheel - python setup.py bdist_wheel + python -m pip install -U pip wheel build + python -m build - name: Upload artifact uses: actions/upload-artifact@v3 with: