Skip to content

Commit 0d65d40

Browse files
committed
bring back support for python 3.9
1 parent dd3965d commit 0d65d40

File tree

3 files changed

+117
-6
lines changed

3 files changed

+117
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
fail-fast: false
3737
matrix:
3838
os: [ubuntu-latest, macos-latest, windows-latest]
39-
python: ['3.10', '3.11', '3.12', '3.13']
39+
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
4040

4141
env:
4242
PYTHON: ${{ matrix.python }}

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ classifiers = [
2020
'Programming Language :: Python',
2121
'Programming Language :: Python :: 3',
2222
'Programming Language :: Python :: 3 :: Only',
23+
'Programming Language :: Python :: 3.9',
2324
'Programming Language :: Python :: 3.10',
2425
'Programming Language :: Python :: 3.11',
2526
'Programming Language :: Python :: 3.12',
@@ -37,7 +38,7 @@ classifiers = [
3738
'Topic :: Software Development :: Libraries :: Python Modules',
3839
'Topic :: Internet',
3940
]
40-
requires-python = '>=3.10'
41+
requires-python = '>=3.9'
4142
dependencies = [
4243
'pydantic>=2.7.0',
4344
'python-dotenv>=0.21.0',

0 commit comments

Comments
 (0)