From c792d6e48edb6d62b817a658470bef2c22e6880c Mon Sep 17 00:00:00 2001 From: Yasha Bubnov Date: Sat, 24 Feb 2024 20:59:04 +0100 Subject: [PATCH] Build arm achitechtures as well (#22) This patch configures ci build to build artefacts for arm architectures. --- .github/workflows/wheels.yaml | 2 +- CMakeLists.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wheels.yaml b/.github/workflows/wheels.yaml index d6424c0..671e743 100644 --- a/.github/workflows/wheels.yaml +++ b/.github/workflows/wheels.yaml @@ -10,7 +10,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - cibw_arch: ['auto64'] + cibw_arch: ['x86_64', 'aarch64', 'arm64', 'universal2'] runs-on: ${{ matrix.os }} diff --git a/CMakeLists.txt b/CMakeLists.txt index 7421f14..81bfcca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.5) project(huffman C) enable_testing() -set(huffman_LIBRARY_VERSION "1.0.2") +set(huffman_LIBRARY_VERSION "1.0.3") set(huffman_LIBRARY_SOVERSION "1") diff --git a/setup.py b/setup.py index 3679244..41495e5 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name="huffmanfile", - version="1.0.2", + version="1.0.3", long_description=Path("README.md").read_text(), long_description_content_type="text/markdown",