Skip to content

Commit

Permalink
Switch pytest build action to use Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
cgmorton committed Aug 23, 2023
1 parent 09c1069 commit 1d53045
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,11 @@ def find_version(*file_paths):
tests_require=['pytest', 'pytest-cov'],
packages=['openet.core'],
keywords='OpenET Evapotranspiration Earth Engine',
classifiers = [
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
zip_safe=False,
)

0 comments on commit 1d53045

Please sign in to comment.