From 30fd0de721fb5ba7246d09b3744e55d03430471d Mon Sep 17 00:00:00 2001 From: x-io Technologies Date: Fri, 3 May 2024 10:25:08 +0100 Subject: [PATCH] Update Python version support --- .github/workflows/main.yml | 4 ++-- setup.py | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a1c4de7..a2df1cd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,7 +21,7 @@ jobs: - [ ubuntu-latest, manylinux_x86_64 ] - [ windows-latest, win_amd64 ] - python-version: [ "cp38-", "cp39-", "cp310-", "cp311-", "cp312-" ] + python-version: [ "cp310-", "cp311-", "cp312-" ] steps: - uses: actions/checkout@v4 @@ -68,7 +68,7 @@ jobs: - uses: actions/setup-python@v5 with: - python-version: "3.9" # build sdist on lowest supported Python + python-version: "3.10" - name: Install Python dependencies run: | diff --git a/setup.py b/setup.py index 0c31ab4..6eb3ac3 100644 --- a/setup.py +++ b/setup.py @@ -31,9 +31,7 @@ author="x-io Technologies Limited", author_email="info@x-io.co.uk", license="MIT", - classifiers=["Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", + classifiers=["Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12"], # versions shown by pyversions badge in README ext_modules=[ext_modules])