From 5ca5134a507bc0c2b114af341177e5a7b305b988 Mon Sep 17 00:00:00 2001 From: Jeremy Ephron Date: Sun, 20 Aug 2023 17:08:32 -0700 Subject: [PATCH] Drop support for 3.6 and 3.7, add 3.11 Behavior is odd on 3.7, and there's no good reason to maintain support for these. --- .github/workflows/ci.yml | 2 +- setup.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac230c2..53d813d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: fail-fast: true matrix: os: ["ubuntu-20.04", "macos-latest"] - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - name: Checkout source diff --git a/setup.py b/setup.py index e4eb4a8..d656e60 100644 --- a/setup.py +++ b/setup.py @@ -16,11 +16,10 @@ 'Development Status :: 3 - Alpha', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - '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', + 'Programming Language :: Python :: 3.11', 'License :: OSI Approved :: MIT License', 'Operating System :: MacOS', 'Operating System :: Unix',