diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 9c18a0d..fe28d91 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -56,6 +56,7 @@ jobs: env: # Disable building PyPy wheels CIBW_SKIP: "pp* cp312*i686" + CIBW_ARCHS_MACOS: "x86_64 arm64" CIBW_PRERELEASE_PYTHONS: False - uses: actions/upload-artifact@v3 diff --git a/setup.py b/setup.py index 57ebc73..53d2a2e 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ MAJOR = 0 MINOR = 1 -MICRO = 35 +MICRO = 36 ISRELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)