Skip to content

Commit 601aee8

Browse files
author
Ryan Mullins
committed
Adding python 3.x to testing
1 parent c69a676 commit 601aee8

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.13']
14+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1515

1616
steps:
1717
- name: Checkout code

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT"
77
authors = [
88
{ name = "Ryan Mullins", email = "" }
99
]
10-
requires-python = ">=3.13"
10+
requires-python = ">=3.9"
1111
dependencies = [
1212
"fastapi>=0.116.1",
1313
]
@@ -16,6 +16,10 @@ classifiers = [
1616
"Intended Audience :: Developers",
1717
"License :: OSI Approved :: MIT License",
1818
"Programming Language :: Python :: 3",
19+
"Programming Language :: Python :: 3.9",
20+
"Programming Language :: Python :: 3.10",
21+
"Programming Language :: Python :: 3.11",
22+
"Programming Language :: Python :: 3.12",
1923
"Programming Language :: Python :: 3.13",
2024
"Framework :: FastAPI",
2125
"Topic :: Internet :: WWW/HTTP",

0 commit comments

Comments
 (0)