File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
22current_version = 3.4.2
33
4+ [bumpversion:file:./check-matplotlib-version.py]
5+ search = __version__ == ' {current_version}'
6+ replace = __version__ == ' {new_version}'
7+
48[bumpversion:glob:./handout-*.tex]
59search = Matplotlib {current_version}
610replace = Matplotlib {new_version}
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ handouts:
3535
3636.PHONY : check
3737check :
38+ ./check-matplotlib-version.py
3839 ./check-num-pages.sh cheatsheets.pdf 2
3940 ./check-num-pages.sh handout-tips.pdf 1
4041 ./check-num-pages.sh handout-beginner.pdf 1
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python
2+ import matplotlib as mpl
3+
4+
5+ assert mpl .__version__ == '3.4.2'
You can’t perform that action at this time.
0 commit comments