From 181dd90addb5f9cefb81b528be54e1a7a3f1433c Mon Sep 17 00:00:00 2001 From: Justin Mahlik Date: Wed, 18 Oct 2023 21:25:26 -0500 Subject: [PATCH] Add support for python 3.12 and tests --- .github/workflows/test.yml | 4 +--- setup.py | 3 +-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8315641..2ec7c3b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,12 +10,11 @@ jobs: strategy: matrix: python-version: - - '3.6' - - '3.7' - '3.8' - '3.9' - '3.10' - '3.11' + - '3.12' steps: - uses: actions/checkout@v2 @@ -26,7 +25,6 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install setuptools pip install -e .[ci] - name: Lint with flake8 run: | diff --git a/setup.py b/setup.py index 0cd9279..fe2932e 100644 --- a/setup.py +++ b/setup.py @@ -75,12 +75,11 @@ def get_version(rel_path): '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', + 'Programming Language :: Python :: 3.12', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Quality Assurance',