Skip to content

Commit

Permalink
Build arm achitechtures as well (#22)
Browse files Browse the repository at this point in the history
This patch configures ci build to build artefacts for arm architectures.
  • Loading branch information
ybubnov authored Feb 24, 2024
1 parent 594aa6f commit c792d6e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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")


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit c792d6e

Please sign in to comment.