Skip to content
Merged
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
10 changes: 4 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
fail-fast: False
matrix:
use-graph: [ 0, 1 ]
python-version: [ "3.9", "3.12" ]
python-version: [ "3.10", "3.13" ]
name: Run notebooks, Python ${{ matrix.python-version }}, compiled = ${{ matrix.use-graph }}
steps:
- uses: SimenB/github-actions-cpu-cores@v2
name: Get number of CPU cores
id: cpu-cores
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
name: Set up Python ${{ matrix.python-version }}
with:
Expand All @@ -32,10 +32,8 @@ jobs:
- shell: bash -l {0}
name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest-xdist nbval
pip install -U -r requirements.txt
pip install git+https://github.com/zfit/zfit
python -m pip install uv
uv pip install --system -r requirements.txt pytest-xdist nbvalgit+https://github.com/zfit/zfit
- name: Run notebooks
run: |
ZFIT_DO_JIT=${{ matrix.use-graph }}
Expand Down
Loading