From 653c3e4a2c7973142864d794bd37bedcf0825b38 Mon Sep 17 00:00:00 2001 From: Max Jones Date: Fri, 12 Aug 2022 11:59:40 -0400 Subject: [PATCH] Drop support for Python 3.7 (#81) --- .github/workflows/main.yaml | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 6c8831e..4380411 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9] + python-version: ["3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v3 - name: Setup Python @@ -47,7 +47,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9] + python-version: ["3.8", "3.10"] steps: - uses: actions/checkout@v3 - name: Setup Python diff --git a/setup.py b/setup.py index 50c7aa7..244e0c2 100644 --- a/setup.py +++ b/setup.py @@ -16,9 +16,9 @@ 'Intended Audience :: Science/Research', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Topic :: Scientific/Engineering', ] @@ -45,7 +45,7 @@ classifiers=CLASSIFIERS, description=DESCRIPTION, long_description=long_description, - python_requires='>=3.7', + python_requires='>=3.8', install_requires=install_requires, url=URL, packages=find_packages(),