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

chore: add more builds (win aarch64, pypy for macos, etc.) #39

Merged
merged 1 commit into from
Oct 2, 2023
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
28 changes: 11 additions & 17 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
PYTHON: ${{ matrix.python-version }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: install rust stable
uses: dtolnay/rust-toolchain@master
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: install rust stable
uses: dtolnay/rust-toolchain@stable
Expand All @@ -107,7 +107,7 @@ jobs:

- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'

- uses: actions/cache@v3
id: cache-py
Expand All @@ -117,6 +117,7 @@ jobs:
key: >
py
${{ env.pythonLocation }}

- run: pip install pre-commit
if: steps.cache-py.outputs.cache-hit != 'true'

Expand Down Expand Up @@ -152,28 +153,24 @@ jobs:
platform: linux
- os: windows
ls: dir
interpreter: 3.8 3.9 3.10 3.11
- os: windows
ls: dir
target: i686
python-architecture: x86
interpreter: 3.8 3.9 3.10 3.11
- os: macos
target: aarch64
interpreter: 3.8 3.9 3.10 3.11 3.12
- os: windows
ls: dir
target: aarch64
interpreter: 3.11 3.12
- os: ubuntu
platform: linux
target: i686
# GCC 4.8.5 in manylinux2014 container doesn't support c11 atomic
# we use manylinux_2_24 container for aarch64 and armv7 targets instead,
- os: ubuntu
platform: linux
target: aarch64
container: messense/manylinux_2_24-cross:aarch64
- os: ubuntu
platform: linux
target: armv7
container: messense/manylinux_2_24-cross:armv7
interpreter: 3.8 3.9 3.10 3.11 3.12
# musllinux
- os: ubuntu
Expand All @@ -187,12 +184,10 @@ jobs:
- os: ubuntu
platform: linux
target: ppc64le
container: messense/manylinux_2_24-cross:ppc64le
interpreter: 3.8 3.9 3.10 3.11 3.12
- os: ubuntu
platform: linux
target: s390x
container: messense/manylinux_2_24-cross:s390x
interpreter: 3.8 3.9 3.10 3.11 3.12
exclude:
# Windows on arm64 only supports Python 3.11+
Expand All @@ -201,7 +196,7 @@ jobs:

runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: set up python
uses: actions/setup-python@v4
Expand All @@ -224,13 +219,12 @@ jobs:
with:
target: ${{ matrix.target }}
manylinux: ${{ matrix.manylinux || 'auto' }}
container: ${{ matrix.container }}
args: --release --out dist --interpreter ${{ matrix.interpreter || '3.8 3.9 3.10 3.11 3.12 pypy3.8 pypy3.9 pypy3.10' }}
rust-toolchain: stable

- run: ${{ matrix.ls || 'ls -lh' }} dist/

- run: twine check dist/*
- run: twine check --strict dist/*

- uses: actions/upload-artifact@v3
with:
Expand All @@ -243,7 +237,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: set up python
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ crate-type = ["cdylib"]

[dependencies]
calamine = {git = "https://github.com/tafia/calamine.git", rev = "7c12f62e469e47f07dc41d08b6fde4f02635aa4b", features = ["dates"]}
pyo3 = {version = "0.19.2", features = ["extension-module", "chrono"]}
pyo3 = {version = "0.19.2", features = ["extension-module", "chrono", "generate-import-lib"]}
chrono = {version = "0.4.28", features = ["serde"]}
pyo3-file = "0.7.0"

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ multi_line_output = 3
profile = "black"

[build-system]
requires = ["maturin>=1.0,<1.1"]
requires = ["maturin>=1,<2"]
build-backend = "maturin"

[tool.maturin]
Expand Down