Skip to content

Update for Stan 2.35 #397

Update for Stan 2.35

Update for Stan 2.35 #397

Workflow file for this run

name: httpstan
on: [push, pull_request]
jobs:
tests:
name: httpstan tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
python-version: ["3.10", "3.11"]
include:
- os: ubuntu-24.04
python-version: "3.12"
- os: macos-12
python-version: "3.10"
- os: macos-13
python-version: "3.11"
- os: macos-14
python-version: "3.12"
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pip install "poetry~=1.7.1"
- name: Build libraries used by Stan
run: make -j2
# export test dependencies from pyproject.toml, install them
- name: Install dependencies
run: |
poetry export -f requirements.txt --without-hashes --with dev -o requirements.txt \
&& pip install -r requirements.txt
- name: Check code
run: scripts/check
- name: Build and Install wheel
run: |
poetry build -v
python -m pip install dist/*.whl
- name: Run tests
run: python -m pytest -s -v tests
- name: Test PyStan compatibility
run: |
pip install --pre pystan
python -c'import stan;assert stan.build("parameters {real y;} model {y ~ normal(0,1);}").sample()["y"] is not None'