We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5c1152 commit dd9d151Copy full SHA for dd9d151
README.md
@@ -60,3 +60,24 @@ $ cd ..
60
$ xelatex cheatsheets.tex
61
62
```
63
+
64
+## Update Matplotlib version
65
66
+The version of Matplotlib is hard-coded a number of places throughout the
67
+cheatsheets. To ensure that they are all consistent (and consistent with the
68
+version of Matplotlib actually used) use the tool `bump2version` to update.
69
+For patch releases do
70
71
+```
72
+$ bump2release --new-version x.y.Z patch
73
+$ cd requirements
74
+$ pip-compile requirements.in > requirements.txt
75
76
77
+and for a new minor versions do
78
79
80
+$ bump2release --new-version x.Y.0 minor
81
82
83
0 commit comments