From cbf430b4d9c12d3f87d47acbd87eaa31398a33f6 Mon Sep 17 00:00:00 2001 From: Matt Schwager Date: Thu, 13 Jun 2024 09:18:09 -0400 Subject: [PATCH] Drop Python 3.7 support, add 3.12 --- .github/workflows/ci.yml | 8 ++++---- setup.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec57b88..9e3157b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,19 +6,19 @@ jobs: strategy: matrix: os: - - ubuntu-20.04 + - ubuntu-latest - macos-latest - windows-latest python-version: - - "3.7" - "3.8" - "3.9" - "3.10" - "3.11" + - "3.12" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: "pip" diff --git a/setup.py b/setup.py index 1f18baa..a032802 100644 --- a/setup.py +++ b/setup.py @@ -36,11 +36,11 @@ 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX', - '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', 'Topic :: Security', 'Topic :: Software Development :: Quality Assurance', ],