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 ------------------