From bb86087b8c93d80eded8968f64bfbb5bd0489d89 Mon Sep 17 00:00:00 2001 From: Martin Stancsics Date: Thu, 30 Jan 2025 10:44:14 +0100 Subject: [PATCH] Build wheels for linux-aarch64 (#903) * Harmonize workflow triggers * Build for linux-aarch64 * Build conda wheels as before * Fix release date Co-authored-by: Jan Tilly --------- Co-authored-by: Jan Tilly --- .github/workflows/build_wheels.yml | 7 ++++++- .github/workflows/conda-build.yml | 6 +++--- CHANGELOG.rst | 8 ++++++++ 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index ec37fd49..1f6fcc45 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -2,6 +2,11 @@ name: Build and upload to PyPI on: pull_request: + push: + branches: + - "main" + tags: + - "*" release: types: - published @@ -12,7 +17,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, windows-2022, macos-13, macos-14] + os: [ubuntu-22.04, ubuntu-22.04-arm, windows-2022, macos-13, macos-14] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/conda-build.yml b/.github/workflows/conda-build.yml index 1b6dda22..021fd0e1 100644 --- a/.github/workflows/conda-build.yml +++ b/.github/workflows/conda-build.yml @@ -1,11 +1,11 @@ name: conda-build on: pull_request: - branches: - - main push: branches: - - main + - "main" + tags: + - "*" paths: - '.github/**' - 'conda.recipe/**' diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a2ee4f7b..2ae3e02b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,6 +7,14 @@ Changelog ========= +3.1.2 - 2025-01-30 +------------------ + +**Other changes:** + +- Linux-aarch64 wheels are now uploaded to PyPI. + + 3.1.1 - 2025-01-13 ------------------