From 1d53045904f9cbad7d6f764160d13f63e752944e Mon Sep 17 00:00:00 2001 From: Charles Morton Date: Wed, 23 Aug 2023 16:44:34 -0600 Subject: [PATCH] Switch pytest build action to use Python 3.9 --- .github/workflows/build.yml | 4 ++-- setup.py | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4c3de56..c529583 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/setup.py b/setup.py index 7692a83..35af5b6 100644 --- a/setup.py +++ b/setup.py @@ -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, )