Skip to content

Commit 540ffcd

Browse files
authored
Merge pull request #299 from kafitzgerald/python_version
Remove upper version pin and drop Python 3.9
2 parents 309301f + 926b953 commit 540ffcd

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
os: [ "ubuntu-latest", "macos-latest", "macos-14" ]
27-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
27+
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
2828
steps:
2929
- name: checkout
3030
uses: actions/checkout@v6

build_envs/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: wrf_python_build
33
channels:
44
- conda-forge
55
dependencies:
6-
- python>=3.9, <3.14
6+
- python
77
- compilers
88
- basemap
99
- cartopy

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ maintainers = [
1212
]
1313
description = "Diagnostic and interpolation routines for WRF-ARW data."
1414
readme = "README.md"
15-
requires-python = ">=3.9, <3.14"
15+
requires-python = ">=3.10"
1616
keywords = [
1717
"python", "wrf-python", "wrf", "forecast", "model",
1818
"weather research and forecasting", "interpolation",
@@ -26,7 +26,7 @@ classifiers = [
2626
"Intended Audience :: Developers",
2727
"License :: OSI Approved :: Apache Software License",
2828
"Programming Language :: Fortran",
29-
"Programming Language :: Python :: 3.9",
29+
"Programming Language :: Python :: 3",
3030
"Programming Language :: Python :: 3.10",
3131
"Programming Language :: Python :: 3.11",
3232
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)