Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tox.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
python-version: ["3.9", "3.10"]
python-version: ["3.10"]
fail-fast: false

steps:
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []

Expand Down Expand Up @@ -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',
],
Expand Down Expand Up @@ -134,5 +134,5 @@

ext_modules=[cPerf],

python_requires='>=3.8',
python_requires='>=3.10',
)