diff --git a/.github/workflows/tox.yaml b/.github/workflows/tox.yaml index 131487a5..ff835781 100644 --- a/.github/workflows/tox.yaml +++ b/.github/workflows/tox.yaml @@ -10,7 +10,7 @@ jobs: strategy: matrix: - python-version: ["3.9", "3.10"] + python-version: ["3.10"] fail-fast: false steps: diff --git a/setup.py b/setup.py index b29c6f13..0e2789eb 100644 --- a/setup.py +++ b/setup.py @@ -4,8 +4,8 @@ import sys from setuptools import setup, find_packages, Extension -if sys.version_info < (3, 8): - raise RuntimeError("Python 3.8 or higher required.") +if sys.version_info < (3, 10): + raise RuntimeError("Python 3.10 or higher required.") cflags = [] @@ -80,7 +80,7 @@ 'License :: OSI Approved :: Apache-2.0 with LLVM exception', 'Natural Language :: English', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.10', 'Topic :: Software Development :: Quality Assurance', 'Topic :: Software Development :: Testing', ], @@ -134,5 +134,5 @@ ext_modules=[cPerf], - python_requires='>=3.8', + python_requires='>=3.10', )