From d32e00caa32d86312d0ca123ede2379970940bb0 Mon Sep 17 00:00:00 2001 From: Eric Phipps Date: Mon, 19 Aug 2024 13:37:12 -0600 Subject: [PATCH] Update buildwheels.yml --- .github/workflows/buildwheels.yml | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/workflows/buildwheels.yml b/.github/workflows/buildwheels.yml index 88c2c4ae5b..4e9194a8db 100644 --- a/.github/workflows/buildwheels.yml +++ b/.github/workflows/buildwheels.yml @@ -29,17 +29,20 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: 3.11 + # - uses: actions/setup-python@v2 + # with: + # python-version: 3.11 - - name: Setup pip - run: | - python -m pip install --upgrade pip - python -m pip install cibuildwheel + # - name: Setup pip + # run: | + # python -m pip install --upgrade pip + # python -m pip install cibuildwheel - - name: Build wheel - run: python -m cibuildwheel --output-dir dist/ + # - name: Build wheel + # run: python -m cibuildwheel --output-dir dist/ + - name: Build wheels + uses: uses: pypa/cibuildwheel@v2.20.0 + output-dir: dist env: CIBW_BUILD: cp311-manylinux_x86_64 CIBW_SKIP: "*-win32 *-manylinux_i686"