Skip to content

Commit 2093008

Browse files
authored
fix min deps (#91)
* fix min deps * changelog
1 parent 3e541bb commit 2093008

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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)).
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)).
1111

1212
| Package | Old | New |
1313
| ------------ | ----- | ----- |

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.18
6-
matplotlib >= 3.4
7-
numpy >= 1.17
5+
cartopy >= 0.20
6+
matplotlib >= 3.5
7+
numpy >= 1.23

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.18
29-
matplotlib >= 3.4
30-
numpy >= 1.17
28+
cartopy >= 0.20
29+
matplotlib >= 3.5
30+
numpy >= 1.23
3131

3232
[tool:pytest]
3333
filterwarnings =

0 commit comments

Comments
 (0)