Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
### Breaking changes

- Removed support for python 3.10 ([#156](https://github.com/mpytools/mplotutils/pull/156)).
- The minimum versions of some dependencies were changed ([#159](https://github.com/mpytools/mplotutils/pull/159)).

| Package | Old | New |
| ---------- | ------- | ------ |
| cartopy | 0.22 | 0.23 |
| matplotlib | 3.8 | 3.9 |
| numpy | 1.24 | 1.26 |
| xarray | 2023.9 | 2024.7 |

### Enhancements

Expand Down
8 changes: 4 additions & 4 deletions ci/requirements/min-all-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ channels:
- nodefaults
dependencies:
- python=3.11
- cartopy=0.22
- matplotlib-base=3.8
- numpy=1.24
- cartopy=0.23
- matplotlib-base=3.9
- numpy=1.26
- seaborn=0.13
- xarray=2023.9
- xarray=2024.7
# for testing
- pytest
- pytest-cov
8 changes: 4 additions & 4 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
## Required dependencies

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

## Optional dependencies

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

## Instructions

Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# it exists to let GitHub build the repository dependency graph
# https://help.github.com/en/github/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on

cartopy >= 0.22
matplotlib >= 3.8
numpy >= 1.24
xarray >= 2023.9
cartopy >= 0.23
matplotlib >= 3.9
numpy >= 1.26
xarray >= 2024.7
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.htm
include_package_data = True
python_requires = >=3.11
install_requires =
cartopy >=0.22
matplotlib >=3.8
numpy >=1.24
xarray >=2023.9
cartopy >=0.23
matplotlib >=3.9
numpy >=1.26
xarray >=2024.7

[flake8]
ignore=
Expand Down
Loading