Skip to content

Commit cc1986a

Browse files
committed
HARMONY-1646: Update supported Python versions to 3.9 through 3.13.
1 parent e363ec3 commit cc1986a

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-20.04
88
strategy:
99
matrix:
10-
python-version: [3.8, 3.9, '3.10', '3.11']
10+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1111

1212
steps:
1313
- uses: actions/checkout@v4

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ We welcome feedback on Harmony-Py via [GitHub Issues](https://github.com/nasa/ha
1212

1313
## Prerequisites
1414

15-
* Python 3.8 through 3.11 (other versions are end of life or untested)
15+
* Python 3.9 through 3.13 (other versions are end of life or untested)
1616

1717

1818
## Installing
@@ -28,7 +28,7 @@ This will install harmony-py and its dependencies into your current Python envir
2828

2929
## Prerequisites
3030

31-
* Python 3.8 through 3.11, ideally installed via a virtual environment
31+
* Python 3.9 through 3.13, ideally installed via a virtual environment
3232

3333

3434
## Installing Development & Example Dependencies

pyproject.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,18 @@ authors = [
1313
]
1414
readme = "README.md"
1515
license = {file = "LICENSE"}
16-
requires-python = ">=3.8, <4"
16+
requires-python = ">=3.9, <4"
1717
keywords = ["nasa", "harmony", "remote-sensing", "science", "geoscience"]
1818
classifiers = [
1919
'Development Status :: 3 - Alpha',
2020
"Intended Audience :: Developers",
2121
"Intended Audience :: Science/Research",
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.8",
2423
"Programming Language :: Python :: 3.9",
2524
"Programming Language :: Python :: 3.10",
2625
"Programming Language :: Python :: 3.11",
26+
"Programming Language :: Python :: 3.12",
27+
"Programming Language :: Python :: 3.13",
2728
"Programming Language :: Python :: 3 :: Only",
2829
]
2930
dynamic = ["version"]

0 commit comments

Comments
 (0)