Skip to content

Commit df486a0

Browse files
authored
drop python 3.11 support (#233)
* drop python 3.11 support * changelog
1 parent 639d519 commit df486a0

5 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
os: ["ubuntu-latest"]
25-
python-version: ["3.11", "3.13", "3.14"]
25+
python-version: ["3.12", "3.14"]
2626
env: [""]
2727
include:
2828
- env: "min-all-deps"
29-
python-version: "3.11"
29+
python-version: "3.12"
3030
os: "ubuntu-latest"
3131
- env: ""
3232
python-version: "3.14"

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
### Breaking changes
66

7+
- Removed support for python 3.11 ([#233](https://github.com/mpytools/mplotutils/pull/233)).
8+
9+
710
### Enhancements
811

912
### Bug fixes

ci/requirements/min-all-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ channels:
33
- conda-forge
44
- nodefaults
55
dependencies:
6-
- python=3.11
6+
- python=3.12
77
- cartopy=0.23
88
- matplotlib-base=3.9
99
- numpy=1.26

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Required dependencies
44

5-
- Python
5+
- python
66
- [cartopy](http://scitools.org.uk/cartopy/)
77
- [matplotlib](http://matplotlib.org/)
88
- [numpy](http://www.numpy.org/)

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,14 @@ classifiers = [
1010
"Intended Audience :: Science/Research",
1111
"Programming Language :: Python",
1212
"Programming Language :: Python :: 3",
13-
"Programming Language :: Python :: 3.11",
1413
"Programming Language :: Python :: 3.12",
1514
"Programming Language :: Python :: 3.13",
1615
"Programming Language :: Python :: 3.14",
1716
"Topic :: Scientific/Engineering",
1817
"Topic :: Scientific/Engineering :: Atmospheric Science",
1918
"Topic :: Scientific/Engineering :: GIS",
2019
]
21-
requires-python = ">=3.11"
20+
requires-python = ">=3.12"
2221
dependencies = [
2322
"cartopy >=0.23",
2423
"matplotlib >=3.9",
@@ -57,7 +56,7 @@ tests = [
5756
"pytest",
5857
]
5958
dev = [
60-
"regionmask[full, tests]", # docs
59+
"mplotutils[full, tests]", # docs
6160
"black !=23",
6261
"ruff",
6362
]

0 commit comments

Comments
 (0)