From 19ef20ab82ef1beae230e49d4c3fa2714b8cd45d Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Fri, 13 Oct 2023 08:15:09 -0400 Subject: [PATCH] MNT: Drop Python 3.7, test up to 3.12 --- .github/workflows/pythonpackage.yml | 2 +- setup.cfg | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 7698f11..a7995fa 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -17,7 +17,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.7, 3.8, 3.9, "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 diff --git a/setup.cfg b/setup.cfg index 17f6fb7..8c823ad 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,13 +13,14 @@ classifiers = Development Status :: 3 - Alpha Intended Audience :: Science/Research 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 + Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 [options] -python_requires = >= 3.7 +python_requires = >= 3.8 install_requires = packaging requests