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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.11", "3.13", "3.14"]
python-version: ["3.12", "3.14"]
env: [""]
include:
- env: "min-all-deps"
python-version: "3.11"
python-version: "3.12"
os: "ubuntu-latest"
- env: ""
python-version: "3.14"
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

### Breaking changes

- Removed support for python 3.11 ([#233](https://github.com/mpytools/mplotutils/pull/233)).


### Enhancements

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements/min-all-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
- nodefaults
dependencies:
- python=3.11
- python=3.12
- cartopy=0.23
- matplotlib-base=3.9
- numpy=1.26
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Required dependencies

- Python
- python
- [cartopy](http://scitools.org.uk/cartopy/)
- [matplotlib](http://matplotlib.org/)
- [numpy](http://www.numpy.org/)
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,14 @@ classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: GIS",
]
requires-python = ">=3.11"
requires-python = ">=3.12"
dependencies = [
"cartopy >=0.23",
"matplotlib >=3.9",
Expand Down Expand Up @@ -57,7 +56,7 @@ tests = [
"pytest",
]
dev = [
"regionmask[full, tests]", # docs
"mplotutils[full, tests]", # docs
"black !=23",
"ruff",
]
Expand Down
Loading