From 198ac1ca7267f1ba9852199047e427b5f1323275 Mon Sep 17 00:00:00 2001 From: Tim Arnett Date: Fri, 12 Apr 2024 15:01:26 -0400 Subject: [PATCH] Changed cibuildwheel to be for python 310 for win 64, changed dependencies --- .github/workflows/publish-to-pypi.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 62d24a7..84339e1 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -31,12 +31,12 @@ jobs: python-version: '3.10' - name: Install dependencies run: | - python -m pip install --upgrade pip - python -m pip install setuptools wheel twine==4.0.1 cibuildwheel==2.9.0 + python -m pip install cibuildwheel==2.17.0 twine==5.0.0 - name: Build wheels env: CIBW_PROJECT_REQUIRES_PYTHON: ${{ matrix.builds.python_requires }} - CIBW_BUILD: "cp3*" +# CIBW_BUILD: "cp310*" + CIBW_BUILD: "cp310-win_amd64" run: python -m cibuildwheel --output-dir dist - name: Publish to PyPI env: @@ -56,7 +56,7 @@ jobs: python-version: 3.10 - name: Install deps run: | - python -m pip install wheel==0.37.1 twine==4.0.1 + python -m pip install wheel==0.43.0 twine==5.0.0 - name: Build pure python wheel env: KESSLER_SKIP_COMPILE: "1"