Skip to content

Commit

Permalink
Re-enable the publish archs and add editable to pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudo-rnd-thoughts committed Aug 22, 2024
1 parent 273ed0d commit f0a4b1b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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: |
Expand Down

0 comments on commit f0a4b1b

Please sign in to comment.