Skip to content

Commit f02ebb5

Browse files
authored
Merge pull request #146 from dstansby/mpl38
Update Matplotlib version to 3.8
2 parents eb7a38b + 2944bfe commit f02ebb5

10 files changed

+9
-14
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.7.4
2+
current_version = 3.8.2
33

44
[bumpversion:file:./check-matplotlib-version.py]
55
search = __version__ == '{current_version}'

Makefile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,7 @@ CONVERTFLAGS = -density 150 -alpha remove -depth 8
55
default: all
66

77
.PHONY: all
8-
all: logos figures cheatsheets handouts docs
9-
10-
.PHONY: logos
11-
logos:
12-
wget https://github.com/matplotlib/matplotlib/raw/v3.7.4/doc/_static/logo2.png -O ./logos/logo2.png
8+
all: figures cheatsheets handouts docs
139

1410
.PHONY: figures
1511
figures:

cheatsheets.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@
264264
\begin{multicols*}{5}
265265
\begin{overpic}[width=\columnwidth,tics=6,trim=12 6 18 6, clip]{logo2.png}
266266
\put (16.5,1.5) {\scriptsize\RobotoCon \textcolor[HTML]{11557c}{Cheat sheet}}
267-
\put (80,1.5) {\tiny\Roboto \textcolor[HTML]{11557c}{Version 3.7.4}}
267+
\put (80,1.5) {\tiny\Roboto \textcolor[HTML]{11557c}{Version 3.8.2}}
268268
\end{overpic}
269269
%\textbf{\Large \RobotoCon Matplotlib 3.2 cheat sheet}\\
270270
%{\ttfamily https://matplotlib.org} \hfill CC-BY 4.0

check-matplotlib-version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
import matplotlib as mpl
33

44

5-
assert mpl.__version__ == '3.7.4'
5+
assert mpl.__version__ == '3.8.2'

handout-beginner.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ \subsection*{\rmfamily Save \mdseries (bitmap or vector format)}
297297
\vfill
298298
%
299299
{\scriptsize
300-
Matplotlib 3.7.4 handout for beginners.
300+
Matplotlib 3.8.2 handout for beginners.
301301
Copyright (c) 2021 Matplotlib Development Team.
302302
Released under a CC-BY 4.0 International License.
303303
Supported by NumFOCUS.

handout-intermediate.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ \subsection*{\rmfamily Size \& DPI}
198198
\vfill
199199
%
200200
{\scriptsize
201-
Matplotlib 3.7.4 handout for intermediate users.
201+
Matplotlib 3.8.2 handout for intermediate users.
202202
Copyright (c) 2021 Matplotlib Development Team.
203203
Released under a CC-BY 4.0 International License.
204204
Supported by NumFOCUS.

handout-tips.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ \subsection*{\rmfamily Read the documentation}
243243
\vfill
244244
%
245245
{\scriptsize
246-
Matplotlib 3.7.4 handout for tips \& tricks.
246+
Matplotlib 3.8.2 handout for tips \& tricks.
247247
Copyright (c) 2021 Matplotlib Development Team.
248248
Released under a CC-BY 4.0 International License.
249249
Supported by NumFOCUS.

requirements/requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ autopep8
22
bump2version
33
cartopy==0.22.0
44
flake8
5-
matplotlib==3.7.4
5+
matplotlib==3.8.2
66
pillow>=9
77
pdfx
88
pip-tools

requirements/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ kiwisolver==1.4.5
6868
# via matplotlib
6969
markupsafe==2.1.4
7070
# via jinja2
71-
matplotlib==3.7.4
71+
matplotlib==3.8.2
7272
# via
7373
# -r requirements.in
7474
# cartopy

scripts/markers.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
".", "o", "s", "P", "X", "*", "p", "D", "<", ">", "^", "v", ]
2828
for x, y, marker in zip(X, Y, markers):
2929
if y == 3: fc = "white"
30-
elif y == 2: fc = "None"
3130
else: fc = "C1"
3231
plt.scatter(x, 1+y, s=100, marker=marker, fc=fc, ec="C1", lw=0.5)
3332

0 commit comments

Comments
 (0)