Skip to content

Commit 019fea8

Browse files
authored
Merge pull request #1129 from xylar/drop-python-3.14-for-now
Drop python 3.14 support for now
2 parents 9cf503a + f7ad851 commit 019fea8

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

.github/workflows/build_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
shell: bash -l {0}
2828
strategy:
2929
matrix:
30-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
30+
python-version: ["3.10", "3.11", "3.12", "3.13"]
3131
fail-fast: false
3232
steps:
3333
- id: skip_check

.github/workflows/docs_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
types: [published]
1111

1212
env:
13-
PYTHON_VERSION: "3.14"
13+
PYTHON_VERSION: "3.13"
1414

1515
jobs:
1616
publish-docs:

ci/recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ requirements:
2323
- pip
2424
- setuptools >=60
2525
run:
26-
- python >={{ python_min }},<3.13
26+
- python >={{ python_min }},<3.14
2727
- cartopy >=0.18.0
2828
- cartopy_offlinedata
2929
- cmocean

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.10
5+
python >=3.10,<3.14
66
cartopy >=0.18.0
77
cartopy_offlinedata
88
cmocean

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,13 @@ description = """\
2727
"""
2828
license = { file = "LICENSE" }
2929
readme = "README.md"
30-
requires-python = ">=3.10"
30+
requires-python = ">=3.10,<3.14"
3131
classifiers = [
3232
# these are only for searching/browsing projects on PyPI
3333
"Programming Language :: Python :: 3.10",
3434
"Programming Language :: Python :: 3.11",
3535
"Programming Language :: Python :: 3.12",
3636
"Programming Language :: Python :: 3.13",
37-
"Programming Language :: Python :: 3.14",
3837

3938

4039
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)