From e87bbe66db52192e893895ca5adf33b518aeb448 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Mon, 18 Oct 2021 10:38:01 -0500 Subject: [PATCH 1/2] bump supported python versions to 3.7-3.10 --- .github/workflows/main.yml | 2 +- setup.cfg | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9caeed4..0acdcd7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - python_version: ["3.6", "3.9"] + python_version: ["3.7", "3.9", "3.10"] os: [ubuntu-latest, macos-latest, windows-latest] steps: diff --git a/setup.cfg b/setup.cfg index e94b415..554684a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,16 +16,16 @@ classifiers = Intended Audience :: Science/Research License :: OSI Approved :: BSD License Programming Language :: Python - 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 [options] zip_safe = False include_package_data = True packages = find: -python_requires = >=3.6 +python_requires = >=3.7 install_requires = packaging tomlkit From a731aa77fd0fbb83de474991b2980020c6863ccc Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Mon, 18 Oct 2021 10:42:43 -0500 Subject: [PATCH 2/2] switch to v2 setup-python --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0acdcd7..92c11bf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,7 +23,7 @@ jobs: uses: actions/checkout@v2 - name: Install Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: ${{ matrix.python_version }} architecture: 'x64'