File tree Expand file tree Collapse file tree 5 files changed +24
-16
lines changed
Expand file tree Collapse file tree 5 files changed +24
-16
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ channels:
44 - nodefaults
55dependencies :
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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.htm
2424include_package_data = True
2525python_requires = >=3.11
2626install_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]
3333ignore =
You can’t perform that action at this time.
0 commit comments