Skip to content

Commit

Permalink
CI cleanup and new packages archs
Browse files Browse the repository at this point in the history
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
  • Loading branch information
jeandet committed Jan 20, 2025
1 parent 8a788b1 commit 205a44e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
include:
- os: ubuntu-latest
CIBW_ENVIRONMENT: ''
CIBW_ARCHS: "x86_64"
CIBW_ARCHS: "x86_64 aarch64 ppc64le s390x"
- os: windows-latest
CIBW_ENVIRONMENT: ''
CIBW_ARCHS: "AMD64"
CIBW_ARCHS: "AMD64 ARM64"
- os: macos-13 # Intel
CIBW_ENVIRONMENT: >
MACOSX_DEPLOYMENT_TARGET='10.15'
Expand All @@ -50,9 +50,14 @@ jobs:
if: runner.os == 'Windows'
with:
arch: amd64
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/cibuildwheel@v2.21.3
uses: pypa/cibuildwheel@v2.22.0
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
Expand All @@ -63,7 +68,7 @@ jobs:
strategy:
matrix:
os: [macos-13, windows-latest, ubuntu-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
runs-on: ${{ matrix.os }}
steps:
- name: Setup Python
Expand Down Expand Up @@ -97,7 +102,7 @@ jobs:
needs: [build_wheels]
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13.0']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
runs-on: macos-14
steps:
- name: add pyenv to path
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -34,4 +33,4 @@ repository = "https://github.com/SciQLop/CDFpp"

[tool.meson-python.args]
install = ['--tags=runtime,python-runtime']
setup = ['-Doptimization=3']
setup = ['-Doptimization=3', '-Dcpp_std=c++17', '--force-fallback-for=libdeflate']

0 comments on commit 205a44e

Please sign in to comment.