Skip to content
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
20 changes: 13 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,12 @@ jobs:
3.11
3.12
3.13
3.14
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --interpreter 3.10 3.11 3.12 3.13 --zig
args: --release --out dist --interpreter 3.10 3.11 3.12 3.13 3.14 --zig
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
manylinux: auto
before-script-linux: |
Expand Down Expand Up @@ -150,6 +151,7 @@ jobs:
3.11
3.12
3.13
3.14
architecture: ${{ matrix.platform.target }}
- name: Install uv
uses: astral-sh/setup-uv@v7
Expand Down Expand Up @@ -197,7 +199,7 @@ jobs:
fail-fast: false
matrix:
platform:
- runner: macos-13
- runner: macos-15-intel
target: x86_64
- runner: macos-14
target: aarch64
Expand All @@ -210,6 +212,7 @@ jobs:
3.11
3.12
3.13
3.14
- name: Install uv
uses: astral-sh/setup-uv@v7
- uses: maxim-lobanov/setup-xcode@v1
Expand All @@ -234,11 +237,14 @@ jobs:
uv pip install 'nutpie[stan]' --find-links dist --force-reinstall
uv pip install pytest pytest-timeout pytest-arraydiff
pytest -m "stan and not flow" --arraydiff
uv pip install 'nutpie[pymc]' --find-links dist --force-reinstall
uv pip install jax
pytest -m "pymc and not flow" --arraydiff
uv pip install 'nutpie[all]' --find-links dist --force-reinstall
pytest -m flow --arraydiff
# Skip on x86_64 due to lack of numba support
if [ "${{ matrix.platform.target }}" != "x86_64" ]; then
uv pip install 'nutpie[pymc]' --find-links dist --force-reinstall
uv pip install jax
pytest -m "pymc and not flow" --arraydiff
uv pip install 'nutpie[all]' --find-links dist --force-reinstall
pytest -m flow --arraydiff
fi
sdist:
runs-on: ubuntu-latest
steps:
Expand Down
Loading
Loading