Skip to content

Commit 1d53045

Browse files
committed
Switch pytest build action to use Python 3.9
1 parent 09c1069 commit 1d53045

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99

1010
steps:
1111
- uses: actions/checkout@v1
12-
- name: Set up Python 3.7
12+
- name: Set up Python 3.9
1313
uses: actions/setup-python@v1
1414
with:
15-
python-version: 3.7
15+
python-version: 3.9
1616
- name: Install dependencies
1717
run: |
1818
python -m pip install --upgrade pip

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,11 @@ def find_version(*file_paths):
4646
tests_require=['pytest', 'pytest-cov'],
4747
packages=['openet.core'],
4848
keywords='OpenET Evapotranspiration Earth Engine',
49-
classifiers = [
49+
classifiers=[
5050
'License :: OSI Approved :: Apache Software License',
51-
'Programming Language :: Python :: 3.7',
51+
'Programming Language :: Python :: 3.8',
52+
'Programming Language :: Python :: 3.9',
53+
'Programming Language :: Python :: 3.10',
5254
],
5355
zip_safe=False,
5456
)

0 commit comments

Comments
 (0)