Skip to content

Commit 268831f

Browse files
authored
drop python 3.10 support (#156)
1 parent 6d313cb commit 268831f

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.github/workflows/ci-additional.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
environment-name: min-version-policy
3131
micromamba-version: 'latest'
3232
create-args: >-
33-
python=3.10
33+
python=3.12
3434
pyyaml
3535
conda
3636
python-dateutil

.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.10", "3.12"]
25+
python-version: ["3.11", "3.12"]
2626
env: [""]
2727
include:
2828
- env: "min-all-deps"
29-
python-version: "3.10"
29+
python-version: "3.11"
3030
os: "ubuntu-latest"
3131
- env: ""
3232
python-version: "3.12"

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.10
6+
- python=3.11
77
- cartopy=0.22
88
- matplotlib-base=3.8
99
- numpy=1.24

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 (3.10 or later)
5+
- Python (3.11 or later)
66
- [cartopy](http://scitools.org.uk/cartopy/) (0.22 or later)
77
- [matplotlib](http://matplotlib.org/) (3.8 or later)
88
- [numpy](http://www.numpy.org/) (1.24 or later)

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,14 @@ classifiers =
1414
Intended Audience :: Science/Research
1515
Programming Language :: Python
1616
Programming Language :: Python :: 3
17-
Programming Language :: Python :: 3.10
1817
Programming Language :: Python :: 3.11
1918
Programming Language :: Python :: 3.12
2019

2120
[options]
2221
packages = find:
2322
zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.html
2423
include_package_data = True
25-
python_requires = >=3.10
24+
python_requires = >=3.11
2625
install_requires =
2726
cartopy >=0.22
2827
matplotlib >=3.8

0 commit comments

Comments
 (0)