From 45276290ea35fa888703c0e033df4d47c57ee45e Mon Sep 17 00:00:00 2001 From: x-io Technologies Date: Sun, 22 Sep 2024 00:32:21 +0100 Subject: [PATCH] Support Python 3.8 and 3.9 --- .github/workflows/main.yml | 2 +- pyproject.toml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 309e701..2f5f080 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: [ "cp310-", "cp311-", "cp312-" ] + python-version: [ "cp38-", "cp39-", "cp310-", "cp311-", "cp312-" ] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 96ab914..3f9217f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,9 @@ description = "Fusion Python package" readme = { text = "See [github](https://github.com/xioTechnologies/Fusion) for documentation and examples.", content-type = "text/markdown" } authors = [{ name = "x-io Technologies Limited", email = "info@x-io.co.uk" }] license = { file = "LICENSE.md" } -classifiers = ["Programming Language :: Python :: 3.10", +classifiers = ["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"] # versions shown by pyversions badge in README