diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3c6613bb2..008a88a05 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -81,7 +81,7 @@ jobs: - uses: actions/checkout@v3 - name: Build wheels - uses: pypa/cibuildwheel@v2.11.2 + uses: pypa/cibuildwheel@v2.16.2 - uses: actions/upload-artifact@v3 with: @@ -99,7 +99,7 @@ jobs: - uses: actions/checkout@v3 - name: Build wheels - uses: pypa/cibuildwheel@v2.11.2 + uses: pypa/cibuildwheel@v2.16.2 env: CIBW_ARCHS_MACOS: x86_64 @@ -119,7 +119,7 @@ jobs: - uses: actions/checkout@v3 - name: Build wheels - uses: pypa/cibuildwheel@v2.11.2 + uses: pypa/cibuildwheel@v2.16.2 env: CIBW_ARCHS_MACOS: arm64 COINCURVE_CROSS_HOST: aarch64-apple-darwin @@ -174,7 +174,7 @@ jobs: platforms: arm64 - name: Build wheels - uses: pypa/cibuildwheel@v2.11.2 + uses: pypa/cibuildwheel@v2.16.2 env: CIBW_ARCHS_LINUX: aarch64 diff --git a/setup.py b/setup.py index 67097f5f0..420f33f4f 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,8 @@ # We require setuptools >= 3.3 if [int(i) for i in setuptools_version.split('.', 2)[:2]] < [3, 3]: raise SystemExit( - f'Your setuptools version ({setuptools_version}) is too old to correctly install this package. Please upgrade to a newer version (>= 3.3).' + f'Your setuptools version ({setuptools_version}) is too old to correctly install this package. Please upgrade ' + f'to a newer version (>= 3.3).' )