diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8686207..2454f2b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: @@ -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 }}