diff --git a/.github/workflows/build_publish.yml b/.github/workflows/build_publish.yml index 67725b6..5c2b735 100644 --- a/.github/workflows/build_publish.yml +++ b/.github/workflows/build_publish.yml @@ -19,7 +19,7 @@ jobs: name: Install Python - name: Install cibuildwheel - run: python -m pip install cibuildwheel==1.7.4 + run: python -m pip install cibuildwheel==1.11.0 - name: Build wheels for Windows if: startsWith(matrix.os, 'windows') @@ -34,6 +34,8 @@ jobs: run: | git submodule update --init --recursive python -m cibuildwheel --output-dir wheels + env: + CIBW_ARCHS_MACOS: "x86_64 universal2 arm64" - uses: actions/upload-artifact@v2 name: Upload wheels diff --git a/setup.py b/setup.py index 345c7f2..e70ec62 100644 --- a/setup.py +++ b/setup.py @@ -312,7 +312,7 @@ def run(self): setup( name='yara-python-dex', - version='1.0.0', + version='1.0.1', description='Python interface for YARA', long_description=readme, license='Apache 2.0',