Skip to content

Commit d171d13

Browse files
authored
bump dependencies (#159)
* bump dependencies * changelog
1 parent dde5982 commit d171d13

File tree

5 files changed

+24
-16
lines changed

5 files changed

+24
-16
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
55
### Breaking changes
66

77
- Removed support for python 3.10 ([#156](https://github.com/mpytools/mplotutils/pull/156)).
8+
- The minimum versions of some dependencies were changed ([#159](https://github.com/mpytools/mplotutils/pull/159)).
9+
10+
| Package | Old | New |
11+
| ---------- | ------- | ------ |
12+
| cartopy | 0.22 | 0.23 |
13+
| matplotlib | 3.8 | 3.9 |
14+
| numpy | 1.24 | 1.26 |
15+
| xarray | 2023.9 | 2024.7 |
816

917
### Enhancements
1018

ci/requirements/min-all-deps.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ channels:
44
- nodefaults
55
dependencies:
66
- python=3.11
7-
- cartopy=0.22
8-
- matplotlib-base=3.8
9-
- numpy=1.24
7+
- cartopy=0.23
8+
- matplotlib-base=3.9
9+
- numpy=1.26
1010
- seaborn=0.13
11-
- xarray=2023.9
11+
- xarray=2024.7
1212
# for testing
1313
- pytest
1414
- pytest-cov

docs/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
## Required dependencies
44

55
- Python (3.11 or later)
6-
- [cartopy](http://scitools.org.uk/cartopy/) (0.22 or later)
7-
- [matplotlib](http://matplotlib.org/) (3.8 or later)
8-
- [numpy](http://www.numpy.org/) (1.24 or later)
6+
- [cartopy](http://scitools.org.uk/cartopy/) (0.23 or later)
7+
- [matplotlib](http://matplotlib.org/) (3.9 or later)
8+
- [numpy](http://www.numpy.org/) (1.26 or later)
99

1010
## Optional dependencies
1111

1212
- [seaborn](https://seaborn.pydata.org/) (0.13 or later)
13-
- [xarray](http://xarray.pydata.org/) (2023.9 or later)
13+
- [xarray](http://xarray.pydata.org/) (2024.7 or later)
1414

1515
## Instructions
1616

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# it exists to let GitHub build the repository dependency graph
33
# https://help.github.com/en/github/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on
44

5-
cartopy >= 0.22
6-
matplotlib >= 3.8
7-
numpy >= 1.24
8-
xarray >= 2023.9
5+
cartopy >= 0.23
6+
matplotlib >= 3.9
7+
numpy >= 1.26
8+
xarray >= 2024.7

setup.cfg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.htm
2424
include_package_data = True
2525
python_requires = >=3.11
2626
install_requires =
27-
cartopy >=0.22
28-
matplotlib >=3.8
29-
numpy >=1.24
30-
xarray >=2023.9
27+
cartopy >=0.23
28+
matplotlib >=3.9
29+
numpy >=1.26
30+
xarray >=2024.7
3131

3232
[flake8]
3333
ignore=

0 commit comments

Comments
 (0)