Skip to content

Commit 191f789

Browse files
authored
Merge pull request #264 from altheaden/drop-python-3.9
Drop support for Python 3.9
2 parents 79c7f47 + c6e678e commit 191f789

File tree

5 files changed

+5
-14
lines changed

5 files changed

+5
-14
lines changed

.github/workflows/build_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
shell: bash -l {0}
6464
strategy:
6565
matrix:
66-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
66+
python-version: ["3.10", "3.11", "3.12", "3.13"]
6767
fail-fast: false
6868
steps:
6969
- id: skip_check

ci/python3.9.yaml

Lines changed: 0 additions & 8 deletions
This file was deleted.

dev-spec.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# $ conda create --name <env> --file <this file>
33

44
# Base
5-
python>=3.9
5+
python>=3.10
66
cartopy
77
matplotlib-base
88
numpy

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@ description = """\
1818
"""
1919
license = {file = "LICENSE"}
2020
readme = "README.md"
21-
requires-python = ">=3.9"
21+
requires-python = ">=3.10"
2222
classifiers = [
2323
# these are only for searching/browsing projects on PyPI
24-
"Programming Language :: Python :: 3.9",
2524
"Programming Language :: Python :: 3.10",
2625
"Programming Language :: Python :: 3.11",
2726
"Programming Language :: Python :: 3.12",

recipe/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ build:
2525

2626
requirements:
2727
host:
28-
- python >=3.9
28+
- python >=3.10
2929
- pip
3030
- setuptools >=60
3131
run:
32-
- python >=3.9
32+
- python >=3.10
3333
- cartopy
3434
- matplotlib-base
3535
- numpy

0 commit comments

Comments
 (0)