From e3382e909b50fac2c6557e173b041bf1ebd5b352 Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Sun, 6 Oct 2024 15:51:22 -0700 Subject: [PATCH] Test on Python 3.13 --- .github/workflows/test.yml | 2 +- intro/matplotlib/index.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 60329c4f5..f51e285e4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: os: [ubuntu, macos] - python-version: ["3.11", "3.12"] + python-version: ["3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} diff --git a/intro/matplotlib/index.rst b/intro/matplotlib/index.rst index 57924ae8b..b07e4fa92 100644 --- a/intro/matplotlib/index.rst +++ b/intro/matplotlib/index.rst @@ -1126,7 +1126,7 @@ from within a python session: :: >>> import matplotlib.pyplot as plt - >>> help(plt.plot) + >>> help(plt.plot) # doctest: +SKIP Help on function plot in module matplotlib.pyplot: plot(*args: ...) -> 'list[Line2D]'