From 3cf76230978b03dca0d95306d950695721a761b0 Mon Sep 17 00:00:00 2001 From: Ross Barnowski Date: Wed, 5 Nov 2025 01:11:38 -0800 Subject: [PATCH 1/2] Drop 3.11, add 3.14 for testing. --- .github/workflows/notebooks.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/notebooks.yml b/.github/workflows/notebooks.yml index d92445663..14f1bb0b0 100644 --- a/.github/workflows/notebooks.yml +++ b/.github/workflows/notebooks.yml @@ -19,7 +19,7 @@ jobs: max-parallel: 12 matrix: os: [Ubuntu-22.04, macOS-latest] - python-version: ["3.11", "3.12", "3.13"] + python-version: ["3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 @@ -31,8 +31,8 @@ jobs: - name: Before install run: | if [ "$RUNNER_OS" == "Linux" ]; then - sudo apt-get update - sudo apt-get install graphviz graphviz-dev + sudo apt update + sudo apt install -y graphviz graphviz-dev elif [ "$RUNNER_OS" == "macOS" ]; then brew install graphviz pkg-config fi From 2121b32c5a16bbe52557be2b37adbbfb5d2862be Mon Sep 17 00:00:00 2001 From: Ross Barnowski Date: Wed, 5 Nov 2025 01:13:17 -0800 Subject: [PATCH 2/2] Bump doc build to 3.14. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ff559c291..d0f2d510a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,7 +6,7 @@ jobs: build-docs: working_directory: ~/repo docker: - - image: cimg/python:3.12.0 + - image: cimg/python:3.14 steps: - checkout