From 944eaedf2d0a6a06910940dbf9f5960005fafedb Mon Sep 17 00:00:00 2001 From: Jeremy Singer-Vine Date: Sat, 6 Jul 2024 16:18:51 -0400 Subject: [PATCH] Remove testing for Python 3.8, add for 3.12 --- .github/workflows/tests.yml | 6 +++--- setup.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d91c705..f7fb951 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,10 +9,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set up Python 3.9 + - name: Set up Python 3.12 uses: actions/setup-python@v4 with: - python-version: 3.9 + python-version: 3.12 - name: Configure pip caching uses: actions/cache@v3 @@ -44,7 +44,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.8, 3.9, "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 diff --git a/setup.py b/setup.py index 93d3123..12208b1 100644 --- a/setup.py +++ b/setup.py @@ -50,9 +50,9 @@ setup( "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", - "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", ], )