Skip to content

Commit

Permalink
HARMONY-1838: Clarify supported python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
vinnyinverso committed Aug 6, 2024
1 parent 57583a9 commit 02a91e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ We welcome feedback on Harmony-Py via [GitHub Issues](https://github.com/nasa/ha

## Prerequisites

* Python 3.8+
* Python 3.8 through 3.11 (other versions are end of life or untested)


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

## Prerequisites

* Python 3.7+, ideally installed via a virtual environment
* Python 3.8 through 3.11, ideally installed via a virtual environment


## Installing Development & Example Dependencies
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ def get_version():
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand All @@ -58,7 +56,7 @@ def get_version():
],
keywords='nasa, harmony, remote-sensing, science, geoscience',
packages=find_packages(exclude=['tests']),
python_requires='>=3.6, <4',
python_requires='>=3.8, <4',
install_requires=DEPENDENCIES,
extras_require={
'dev': DEV_DEPENDENCIES,
Expand Down

0 comments on commit 02a91e7

Please sign in to comment.