Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

aarch64 wheels #219

Merged
merged 3 commits into from
Feb 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 54 additions & 9 deletions .github/workflows/gh_actions_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
run: bash tools/gha_manylinux.sh
- uses: actions/upload-artifact@v4
with:
name: wheel_313
name: wheel_313_linux_x86_64
path: repaired_wheel/*.whl
manylinux228_x86_64-py312:
runs-on: ubuntu-latest
Expand All @@ -101,7 +101,7 @@ jobs:
run: bash tools/gha_manylinux.sh
- uses: actions/upload-artifact@v4
with:
name: wheel_312
name: wheel_312_linux_x86_64
path: repaired_wheel/*.whl
manylinux228_x86_64-py311:
runs-on: ubuntu-latest
Expand All @@ -116,7 +116,7 @@ jobs:
run: bash tools/gha_manylinux.sh
- uses: actions/upload-artifact@v4
with:
name: wheel_311
name: wheel_311_linux_x86_64
path: repaired_wheel/*.whl
manylinux228_x86_64-py310:
runs-on: ubuntu-latest
Expand All @@ -131,22 +131,67 @@ jobs:
run: bash tools/gha_manylinux.sh
- uses: actions/upload-artifact@v4
with:
name: wheel_310
name: wheel_310_linux_x86_64
path: repaired_wheel/*.whl
manylinux228_x86_64-py39:
runs-on: ubuntu-latest
manylinux228_aarch64-py313:
runs-on: ubuntu-24.04-arm
container:
image: pagmo2/manylinux228_x86_64_with_deps:latest
image: pagmo2/manylinux228_aarch64_with_deps:latest
env:
HEYOKA_PY_BUILD_TYPE: "Python313"
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
steps:
- uses: actions/checkout@v4
- name: Build
run: bash tools/gha_manylinux.sh
- uses: actions/upload-artifact@v4
with:
name: wheel_313_linux_aarch64
path: repaired_wheel/*.whl
manylinux228_aarch64-py312:
runs-on: ubuntu-24.04-arm
container:
image: pagmo2/manylinux228_aarch64_with_deps:latest
env:
HEYOKA_PY_BUILD_TYPE: "Python312"
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
steps:
- uses: actions/checkout@v4
- name: Build
run: bash tools/gha_manylinux.sh
- uses: actions/upload-artifact@v4
with:
name: wheel_312_linux_aarch64
path: repaired_wheel/*.whl
manylinux228_aarch64-py311:
runs-on: ubuntu-24.04-arm
container:
image: pagmo2/manylinux228_aarch64_with_deps:latest
env:
HEYOKA_PY_BUILD_TYPE: "Python311"
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
steps:
- uses: actions/checkout@v4
- name: Build
run: bash tools/gha_manylinux.sh
- uses: actions/upload-artifact@v4
with:
name: wheel_311_linux_aarch64
path: repaired_wheel/*.whl
manylinux228_aarch64-py310:
runs-on: ubuntu-24.04-arm
container:
image: pagmo2/manylinux228_aarch64_with_deps:latest
env:
HEYOKA_PY_BUILD_TYPE: "Python39"
HEYOKA_PY_BUILD_TYPE: "Python310"
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
steps:
- uses: actions/checkout@v4
- name: Build
run: bash tools/gha_manylinux.sh
- uses: actions/upload-artifact@v4
with:
name: wheel_39
name: wheel_310_linux_aarch64
path: repaired_wheel/*.whl
windows_2022_heyoka_head:
runs-on: windows-2022
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ if(NOT CMAKE_BUILD_TYPE)
FORCE)
endif()

project(heyoka.py VERSION 7.2.1 LANGUAGES CXX C)
project(heyoka.py VERSION 7.2.2 LANGUAGES CXX C)

list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" "${CMAKE_CURRENT_SOURCE_DIR}/cmake/yacma")

Expand Down
11 changes: 11 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
Changelog
=========

7.2.2 (unreleased)
------------------

Changes
~~~~~~~

- Add Linux aarch64 wheels
(`#219 <https://github.com/bluescarni/heyoka.py/pull/219>`__).
- Remove wheels for Python 3.9
(`#219 <https://github.com/bluescarni/heyoka.py/pull/219>`__).

7.2.1 (2025-01-07)
------------------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = ['scikit-build-core', 'pybind11 >= 2.10', 'numpy >= 2']

[project]
name = 'heyoka'
version = '7.2.1'
version = '7.2.2'
description = "Python library for ODE integration via Taylor's method and LLVM"
readme = 'README.md'
requires-python = '>=3.9'
Expand Down
Loading