From 0b8bae717dc313a25dc93f7f73530b84fdcc9b37 Mon Sep 17 00:00:00 2001 From: Greg Lindahl Date: Fri, 23 Aug 2024 07:11:51 +0000 Subject: [PATCH] full py3.12 cleanup --- .github/workflows/ci.yaml | 2 +- setup.py | 18 +++++------------- 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c40cdd3a..cf9f7659 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 3 matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13.0-rc.1'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] steps: - name: checkout diff --git a/setup.py b/setup.py index 0328ade1..99da9ec4 100755 --- a/setup.py +++ b/setup.py @@ -2,18 +2,10 @@ # vim: set sw=4 et: from setuptools import setup, find_packages -from setuptools.command.test import test as TestCommand -import glob __version__ = '1.7.4' -class PyTest(TestCommand): - def finalize_options(self): - TestCommand.finalize_options(self) - # should work with setuptools <18, 18 18.5 - self.test_suite = ' ' - setup( name='warcio', version=__version__, @@ -52,13 +44,13 @@ def finalize_options(self): 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'License :: OSI Approved :: Apache Software License', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', - '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 :: Utilities', ]