bump version #272
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
tags: ['v*'] | |
workflow_dispatch: | |
env: | |
MATURIN_VERSION: 1.4.0 | |
jobs: | |
test: | |
runs-on: "ubuntu-22.04" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Test no numpy | |
run: | | |
cargo test --release --features nonumpy | |
- name: Install numpy v1 | |
run: pip install 'numpy>=1,<2' 'pandas>=1,<2' | |
- name: Test numpy v1 | |
run: cargo test --release | |
- name: Install numpy v2 | |
run: pip install 'numpy>=2,<3' 'pandas>=2,<3' | |
- name: Test numpy v2 | |
run: cargo test --release | |
build: | |
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }} | |
needs: test | |
strategy: | |
matrix: | |
python: | |
- version: '3.7' | |
- version: '3.8' | |
- version: '3.9' | |
- version: '3.10' | |
- version: '3.11' | |
- version: '3.12' | |
platform: | |
- os: ubuntu-22.04 | |
- os: macos-12 | |
- os: macos-12 | |
arch: aarch64 | |
- os: windows-2022 | |
runs-on: ${{ matrix.platform.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python.constraints || matrix.python.version }} | |
# allow-prereleases: ${{ matrix.python.version == "3.12" }} | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.platform.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Build Wheels - Linux | |
if: matrix.platform.os == 'ubuntu-22.04' | |
uses: PyO3/maturin-action@v1 | |
with: | |
maturin-version: ${{ env.MATURIN_VERSION }} | |
manylinux: auto | |
args: -i python${{ matrix.python.version }} --release --strip --sdist | |
- name: Check that the source distribution installed correctly | |
if: matrix.platform.os == 'ubuntu-22.04' | |
run: pip install target/wheels/pyxirr-*.tar.gz | |
- name: Build Wheels - MacOS [aarch64] | |
if: ${{ matrix.platform.os == 'macos-12' && matrix.platform.arch == 'aarch64' }} | |
uses: PyO3/maturin-action@v1 | |
with: | |
maturin-version: ${{ env.MATURIN_VERSION }} | |
args: -i python --release --target aarch64-apple-darwin --strip | |
- name: Build Wheels - MacOS [x86_64] | |
if: ${{ matrix.platform.os == 'macos-12' && matrix.platform.arch != 'aarch64' }} | |
uses: PyO3/maturin-action@v1 | |
with: | |
maturin-version: ${{ env.MATURIN_VERSION }} | |
args: -i python --release --target universal2-apple-darwin --strip | |
- name: Build Wheels - Windows | |
if: matrix.platform.os == 'windows-2022' | |
uses: PyO3/maturin-action@v1 | |
with: | |
maturin-version: ${{ env.MATURIN_VERSION }} | |
args: -i python --release --strip | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-${{ matrix.platform.os }}-${{ matrix.platform.arch || 'x86_64' }}-${{ matrix.python.version }} | |
path: target/wheels | |
linux-cross: | |
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }} | |
needs: test | |
strategy: | |
matrix: | |
python: | |
- version: '3.7' | |
abi: 'cp37-cp37m' | |
- version: '3.8' | |
abi: 'cp38-cp38' | |
- version: '3.9' | |
abi: 'cp39-cp39' | |
- version: '3.10' | |
abi: 'cp310-cp310' | |
- version: '3.11' | |
abi: 'cp311-cp311' | |
- version: '3.12' | |
abi: 'cp312-cp312' | |
target: [aarch64, armv7, s390x, ppc64le, ppc64] | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Wheels | |
uses: PyO3/maturin-action@v1 | |
env: | |
PYO3_CROSS_LIB_DIR: /opt/python/${{ matrix.python.abi }}/lib | |
with: | |
maturin-version: ${{ env.MATURIN_VERSION }} | |
target: ${{ matrix.target }} | |
manylinux: auto | |
args: --release --strip -i python${{ matrix.python.version }} | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-${{ matrix.target }}-${{ matrix.python.version }} | |
path: target/wheels | |
wasm-emscripten: | |
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }} | |
needs: test | |
strategy: | |
matrix: | |
# https://pyodide.org/en/stable/project/changelog.html | |
version: | |
- python: '3.11' | |
emscripten: 3.1.46 # pyodide 0.25.* | |
- python: '3.11' | |
emscripten: 3.1.45 # pyodide 0.24.* | |
- python: '3.11' | |
emscripten: 3.1.32 # pyodide 0.23.* | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: mymindstorm/setup-emsdk@v14 | |
with: | |
version: ${{ matrix.version.emscripten }} | |
- uses: PyO3/maturin-action@v1 | |
with: | |
maturin-version: ${{ env.MATURIN_VERSION }} | |
target: wasm32-unknown-emscripten | |
rust-toolchain: nightly | |
args: --release --strip -i python${{ matrix.version.python }} | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-wasm-emscripten-${{ matrix.version.emscripten }} | |
path: target/wheels | |
linux-musl: | |
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }} | |
needs: test | |
strategy: | |
matrix: | |
target: | |
- x86_64-unknown-linux-musl | |
- i686-unknown-linux-musl | |
- aarch64-unknown-linux-musl | |
- armv7-unknown-linux-musleabihf | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Wheels - musl | |
uses: PyO3/maturin-action@v1 | |
with: | |
maturin-version: ${{ env.MATURIN_VERSION }} | |
target: ${{ matrix.target }} | |
manylinux: musllinux_1_2 | |
args: --release --strip -i 3.7 3.8 3.9 3.10 3.11 3.12 | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-musl-${{ matrix.target }} | |
path: target/wheels | |
publish: | |
if: startsWith(github.ref, 'refs/tags/') | |
needs: | |
- build | |
- linux-cross | |
- linux-musl | |
- wasm-emscripten | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
pattern: wheels-* | |
merge-multiple: true | |
- run: pip install maturin | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: pyxirr*.whl | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: PyPI publish | |
env: | |
MATURIN_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
# wasm excluded because pypi doesn't support wasm wheels yet | |
run: find . -name 'pyxirr*' -not -name '*wasm*' | xargs -l maturin upload --skip-existing --username __token__ |