Skip to content

Commit

Permalink
Support Python 3.8 and 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
xioTechnologies authored Sep 21, 2024
1 parent 0bc482f commit a719bcd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit a719bcd

Please sign in to comment.