diff --git a/.github/workflows/publish-build.yml b/.github/workflows/publish-build.yml index bf21ff8b..75103a6b 100644 --- a/.github/workflows/publish-build.yml +++ b/.github/workflows/publish-build.yml @@ -21,7 +21,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-22.04] #, macos-11] - disable macos, as it's not working for a moment + os: [ubuntu-latest, macos-12] steps: - uses: actions/checkout@v3 @@ -33,11 +33,11 @@ jobs: platforms: all - name: Build wheels - uses: pypa/cibuildwheel@v2.15.0 + uses: pypa/cibuildwheel@v2.20.0 env: # Configure cibuildwheel to build native archs, and some emulated ones - CIBW_ARCHS_LINUX: x86_64 # aarch64 - disable ARM, as it's not working for a moment - #CIBW_ARCHS_MACOS: x86_64 arm64 - macos is disabled for a moment + CIBW_ARCHS_LINUX: x86_64 aarch64 + CIBW_ARCHS_MACOS: x86_64 arm64 CIBW_BUILD_VERBOSITY: 3 # Increase verbosity to see what's going on CIBW_REPAIR_WHEEL_COMMAND_LINUX: > # Print additional info from auditwheel auditwheel show {wheel} && auditwheel repair -w {dest_dir} {wheel} diff --git a/.github/workflows/test-python.yml b/.github/workflows/test-python.yml index 49916b79..3e43e397 100644 --- a/.github/workflows/test-python.yml +++ b/.github/workflows/test-python.yml @@ -18,7 +18,7 @@ jobs: python: '3.8' runs-on: ${{ matrix.runs-on }} - name: ${{ matrix.runs_on }} • py${{ matrix.python }} + name: ${{ matrix.runs-on }} • py${{ matrix.python }} steps: - uses: actions/checkout@v3 @@ -34,7 +34,7 @@ jobs: - name: Install pip packages run: | python3 -m pip install --upgrade pip pytest - python3 -m pip install . + python3 -m pip install -e . - name: Run tests run: |