diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d17dbc..5d467ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,16 +31,12 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 - - uses: docker/setup-qemu-action@v1 - if: matrix.os == 'Ubuntu' && github.event_name == 'release' && github.event.action == 'published' - with: - platforms: all - uses: pypa/cibuildwheel@v2.5.0 with: output-dir: dist env: - CIBW_ARCHS: "${{ github.event_name == 'release' && github.event.action == 'published' && 'all' || 'auto' }}" CIBW_BUILD: cp3${{ matrix.minor }}-* + CIBW_ARCHS_MACOS: all CIBW_BEFORE_TEST: pip install -r {project}/requirements.txt CIBW_TEST_COMMAND: pytest {project} - uses: actions/upload-artifact@v2 diff --git a/setup.py b/setup.py index 1c681f5..d8a1249 100644 --- a/setup.py +++ b/setup.py @@ -14,5 +14,5 @@ name="automap", python_requires=">=3.7.0", url="https://github.com/brandtbucher/automap", - version="0.5.0", + version="0.5.1", )