Skip to content

Commit 02a91e7

Browse files
committed
HARMONY-1838: Clarify supported python versions
https://devguide.python.org/versions/
1 parent 57583a9 commit 02a91e7

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
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+
15+
* Python 3.8 through 3.11 (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.7+, ideally installed via a virtual environment
31+
* Python 3.8 through 3.11, ideally installed via a virtual environment
3232

3333

3434
## Installing Development & Example Dependencies

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ def get_version():
4848
'Intended Audience :: Science/Research',
4949
'License :: OSI Approved :: Apache Software License',
5050
'Programming Language :: Python :: 3',
51-
'Programming Language :: Python :: 3.6',
52-
'Programming Language :: Python :: 3.7',
5351
'Programming Language :: Python :: 3.8',
5452
'Programming Language :: Python :: 3.9',
5553
'Programming Language :: Python :: 3.10',
@@ -58,7 +56,7 @@ def get_version():
5856
],
5957
keywords='nasa, harmony, remote-sensing, science, geoscience',
6058
packages=find_packages(exclude=['tests']),
61-
python_requires='>=3.6, <4',
59+
python_requires='>=3.8, <4',
6260
install_requires=DEPENDENCIES,
6361
extras_require={
6462
'dev': DEV_DEPENDENCIES,

0 commit comments

Comments
 (0)