From ed7803f8f60f93cf1fa9ddeb4f5079b9c319c8d2 Mon Sep 17 00:00:00 2001 From: M Bussonnier Date: Sat, 4 Oct 2025 11:13:29 +0200 Subject: [PATCH 1/2] test on 3.14-dev --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ed91b07..e4327e7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,7 +22,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t", "3.14-dev"] steps: - name: Checkout From b3c8435531c8f2de2a99e02deab28667596e6147 Mon Sep 17 00:00:00 2001 From: M Bussonnier Date: Wed, 8 Oct 2025 10:49:57 +0200 Subject: [PATCH 2/2] remove nbdime for now --- .github/workflows/main.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e4327e7..f7f95d4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -36,12 +36,7 @@ jobs: - name: Install package with test dependencies run: pip install .[test] - - name: Test installation with nbdime - if: ${{ matrix.python-version != '3.9' }} - run: pytest -v --nbdime - - name: Test installation without nbdime - if: ${{ matrix.python-version == '3.9' }} run: pytest -v - name: Test flake8