Skip to content

Commit ab03f4a

Browse files
authored
align min deps (#96)
* align min deps * changelog
1 parent 848239b commit ab03f4a

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
### Breaking changes
88

99
- Removed support for python 3.7 and python 3.8 ([#88](https://github.com/mathause/mplotutils/pull/88)).
10-
- The minimum versions of some dependencies were changed ([#88](https://github.com/mathause/mplotutils/pull/88) and [#91](https://github.com/mathause/mplotutils/pull/91)).
10+
- The minimum versions of some dependencies were changed ([#88](https://github.com/mathause/mplotutils/pull/88), [#91](https://github.com/mathause/mplotutils/pull/91), and [#96](https://github.com/mathause/mplotutils/pull/96)).
1111

1212
| Package | Old | New |
1313
| ------------ | ----- | ----- |
14-
| cartopy | 0.18 | 0.20 |
15-
| matplotlib* | 3.4 | 3.5 |
16-
| numpy | 1.17 | 1.23 |
17-
| seaborn | 1.2 | 1.3 |
14+
| cartopy | 0.18 | 0.21 |
15+
| matplotlib* | 3.4 | 3.6 |
16+
| numpy | 1.17 | 1.22 |
17+
| seaborn | 0.11 | 0.12 |
1818
| xarray | 0.15 | 2022.12 |
1919

2020

ci/requirements/py39-min-all-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies:
66
- python=3.9
77
- cartopy=0.21
88
- matplotlib-base=3.6
9-
- numpy=1.23
9+
- numpy=1.22
1010
- seaborn=0.12
1111
- xarray=2022.12
1212
# for testing

docs/installation.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
## Required dependencies
44

5-
- Python (3.7 or later)
6-
- [numpy](http://www.numpy.org/) (1.17 or later)
7-
- [matplotlib](http://matplotlib.org/) (3.4 or later)
8-
- [cartopy](http://scitools.org.uk/cartopy/) (0.18 or later)
5+
- Python (3.9 or later)
6+
- [cartopy](http://scitools.org.uk/cartopy/) (0.21 or later)
7+
- [matplotlib](http://matplotlib.org/) (3.6 or later)
8+
- [numpy](http://www.numpy.org/) (1.22 or later)
99

1010
## Optional dependencies
1111

12-
- [seaborn](https://seaborn.pydata.org/) (0.11 or later)
13-
- [xarray](http://xarray.pydata.org/) (0.18 or later)
12+
- [seaborn](https://seaborn.pydata.org/) (0.12 or later)
13+
- [xarray](http://xarray.pydata.org/) (2022.12 or later)
1414

1515
## Instructions
1616

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
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.20
6-
matplotlib >= 3.5
7-
numpy >= 1.23
5+
cartopy >= 0.21
6+
matplotlib >= 3.6
7+
numpy >= 1.22

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.htm
2525
include_package_data = True
2626
python_requires = >=3.9
2727
install_requires =
28-
cartopy >= 0.20
29-
matplotlib >= 3.5
30-
numpy >= 1.23
28+
cartopy >= 0.21
29+
matplotlib >= 3.6
30+
numpy >= 1.22
3131

3232
[tool:pytest]
3333
filterwarnings =

0 commit comments

Comments
 (0)