Skip to content

Commit e4a209e

Browse files
authored
drop matplotlib 3.7 support (#117)
* drop matplotlib 3.7 support * update changelog
1 parent 8b018e4 commit e4a209e

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## v0.6.0 (unreleased)
4+
5+
### Breaking changes
6+
7+
- The minimum versions of some dependencies were changed ([#117](https://github.com/mathause/mplotutils/pull/117)).
8+
9+
| Package | Old | New |
10+
| ----------- | ---- | ------- |
11+
| matplotlib* | 3.6 | 3.7 |
12+
13+
314

415
## v0.5.0 (27.03.2024)
516

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
- Python (3.9 or later)
66
- [cartopy](http://scitools.org.uk/cartopy/) (0.21 or later)
7-
- [matplotlib](http://matplotlib.org/) (3.6 or later)
7+
- [matplotlib](http://matplotlib.org/) (3.7 or later)
88
- [numpy](http://www.numpy.org/) (1.22 or later)
99

1010
## Optional dependencies

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
# https://help.github.com/en/github/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on
44

55
cartopy >= 0.21
6-
matplotlib >= 3.6
6+
matplotlib >= 3.7
77
numpy >= 1.22
88
xarray >= 2022.12

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ include_package_data = True
2626
python_requires = >=3.9
2727
install_requires =
2828
cartopy >=0.21
29-
matplotlib >=3.6
29+
matplotlib >=3.7
3030
numpy >=1.22
3131
xarray >=2022.12
3232

0 commit comments

Comments
 (0)