Skip to content

Commit

Permalink
Address warnings in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tmontaigu committed Oct 27, 2024
1 parent 8ca9387 commit bdf0cbf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ jobs:
name: Build wheel on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
CIBW_SKIP: pp* *-win32
CIBW_SKIP: pp* *-win32 cp37-* cp38-*
CIBW_TEST_REQUIRES:
CIBW_TEST_COMMAND: 'python -c "import laszip"'
# we are copying the shared libraries ourselves so skip magical copy
CIBW_REPAIR_WHEEL_COMMAND_MACOS: ""
MACOSX_DEPLOYMENT_TARGET: 10.9
MACOSX_DEPLOYMENT_TARGET: 11.0
CIBW_BUILD_VERBOSITY_MACOS: 3
# CIBW_TEST_SKIP: "*-macosx_arm64 *-macosx_universal2:arm64"
CIBW_ARCHS_MACOS: "x86_64 arm64"
Expand Down Expand Up @@ -71,9 +71,9 @@ jobs:
CIBW_TEST_COMMAND: "python -c 'import laszip'"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.11'
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
fail-fast: true

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Install Python
with:
Expand Down

0 comments on commit bdf0cbf

Please sign in to comment.