Skip to content

Update Matplotlib version to 3.9 #168

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 13, 2025
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
6 changes: 1 addition & 5 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.8.2
current_version = 3.9.4

[bumpversion:file:./check-matplotlib-version.py]
search = __version__ == '{current_version}'
Expand All @@ -9,10 +9,6 @@ replace = __version__ == '{new_version}'
search = Matplotlib {current_version}
replace = Matplotlib {new_version}

[bumpversion:file:./Makefile]
search = v{current_version}
replace = v{new_version}

[bumpversion:file:./cheatsheets.tex]
search = Version {current_version}
replace = Version {new_version}
Expand Down
2 changes: 1 addition & 1 deletion cheatsheets.tex
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@
\begin{multicols*}{5}
\begin{overpic}[width=\columnwidth,tics=6,trim=12 6 18 6, clip]{logo2.png}
\put (16.5,1.5) {\scriptsize\RobotoCon \textcolor[HTML]{11557c}{Cheat sheet}}
\put (80,1.5) {\tiny\Roboto \textcolor[HTML]{11557c}{Version 3.8.2}}
\put (80,1.5) {\tiny\Roboto \textcolor[HTML]{11557c}{Version 3.9.4}}
\end{overpic}
%\textbf{\Large \RobotoCon Matplotlib 3.2 cheat sheet}\\
%{\ttfamily https://matplotlib.org} \hfill CC-BY 4.0
Expand Down
2 changes: 1 addition & 1 deletion check-matplotlib-version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
import matplotlib as mpl


assert mpl.__version__ == '3.8.2'
assert mpl.__version__ == '3.9.4'
2 changes: 1 addition & 1 deletion handout-beginner.tex
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ \subsection*{\rmfamily Save \mdseries (bitmap or vector format)}
\vfill
%
{\scriptsize
Matplotlib 3.8.2 handout for beginners.
Matplotlib 3.9.4 handout for beginners.
Copyright (c) 2021 Matplotlib Development Team.
Released under a CC-BY 4.0 International License.
Supported by NumFOCUS.
Expand Down
2 changes: 1 addition & 1 deletion handout-intermediate.tex
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ \subsection*{\rmfamily Size \& DPI}
\vfill
%
{\scriptsize
Matplotlib 3.8.2 handout for intermediate users.
Matplotlib 3.9.4 handout for intermediate users.
Copyright (c) 2021 Matplotlib Development Team.
Released under a CC-BY 4.0 International License.
Supported by NumFOCUS.
Expand Down
2 changes: 1 addition & 1 deletion handout-tips.tex
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ \subsection*{\rmfamily Read the documentation}
\vfill
%
{\scriptsize
Matplotlib 3.8.2 handout for tips \& tricks.
Matplotlib 3.9.4 handout for tips \& tricks.
Copyright (c) 2021 Matplotlib Development Team.
Released under a CC-BY 4.0 International License.
Supported by NumFOCUS.
Expand Down
4 changes: 2 additions & 2 deletions requirements/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ autopep8
bump2version
cartopy==0.22.0
flake8
matplotlib==3.8.2
matplotlib==3.9.4
pillow>=9
pdfx
pip-tools
pre-commit
scipy
# Docs
mpl-sphinx-theme~=3.8.0
mpl-sphinx-theme~=3.9.0
pydata-sphinx-theme==0.13.3
sphinx
sphinx-design
4 changes: 2 additions & 2 deletions requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ kiwisolver==1.4.5
# via matplotlib
markupsafe==2.1.4
# via jinja2
matplotlib==3.8.2
matplotlib==3.9.4
# via
# -r requirements.in
# cartopy
# mpl-sphinx-theme
mccabe==0.7.0
# via flake8
mpl-sphinx-theme==3.8.0
mpl-sphinx-theme==3.9.0
# via -r requirements.in
nodeenv==1.8.0
# via pre-commit
Expand Down
Loading