Skip to content

Update Stan to 2.39.0 #409

Update Stan to 2.39.0

Update Stan to 2.39.0 #409

Workflow file for this run

name: pystan
on: [push, pull_request]
jobs:
tests:
name: pystan tests
timeout-minutes: 30
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-24.04, macos-14]
python-version: ["3.12", "3.13", "3.14"]
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
# export test dependencies from pyproject.toml, install them
- name: Install dependencies
run: |
poetry export -f requirements.txt --without-hashes --dev -o requirements.txt \
&& pip install -r requirements.txt
- name: Build and Install wheel
run: |
poetry build -v
python -m pip install dist/*.whl
- name: Check code
run: scripts/check
- name: Run tests
run: scripts/test