Skip to content

Commit

Permalink
Build pip package for Linux ARM64 (#61)
Browse files Browse the repository at this point in the history
* try build for arm64

* updadate conan

* add path to handler

* fix docs compilation

* update CHANGELOG
  • Loading branch information
atimin authored Jun 14, 2024
1 parent 10a613b commit 853956a
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
- README.md
- CHANGELOG.md
env:
CONAN_VERSION: 1.58.0
CONAN_VERSION: 1.64.0
jobs:
cpplint:
runs-on: ubuntu-22.04
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased


## Added

* ARM64 pip package, [PR-61](https://github.com/panda-official/WaveletBuffer/pull/61)

## 0.7.1 - 2023-06-28

### Fixed:
Expand Down
14 changes: 8 additions & 6 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
mkdocs==1.3
mkdocs
git+https://github.com/JakubAndrysek/mkdoxy
mkdocs-material==8.4
plantuml-markdown==3.5
mkdocs-same-dir==0.1
mkdocs-jupyter==0.21
mkdocstrings[python]==0.19
mkdocs-material
plantuml-markdown
mkdocs-same-dir
mkdocs-jupyter
mkdocstrings[python]
mkdocs-minify-plugin~=0.7.0
griffe==0.30.1
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ plugins:
enable_inventory: false
handlers:
python:
paths: [ python/src ]
rendering:
show_root_heading: true
show_bases: false
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ archs = ["auto64"]
build = ["*38*", "*39*", "*310*", "*311*"]
skip = ["*musllinux*", "pp*"]
test-command = "pip install -r {project}/python/requirements/test.txt && pytest {project}/python/tests"
build-verbosity = '3'
build-verbosity = 3

[tool.cibuildwheel.linux]
archs = "x86_64"
archs = ["x86_64", "aarch64"]
environment-pass = ["VERSION_SUFFIX"]

0 comments on commit 853956a

Please sign in to comment.