Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion intro/matplotlib/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:
<BLANKLINE>
plot(*args: ...) -> 'list[Line2D]'
Expand Down
Loading