Skip to content

Commit eefb492

Browse files
committed
minimum supported python version 3.10 as per boto3 and urllib3
1 parent a2439ed commit eefb492

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
fail-fast: false
3333
matrix:
3434
os: [ubuntu-latest, macos-latest, windows-latest]
35-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
35+
python: ['3.10', '3.11', '3.12', '3.13']
3636

3737
env:
3838
PYTHON: ${{ matrix.python }}

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ classifiers = [
2020
'Programming Language :: Python',
2121
'Programming Language :: Python :: 3',
2222
'Programming Language :: Python :: 3 :: Only',
23-
'Programming Language :: Python :: 3.9',
2423
'Programming Language :: Python :: 3.10',
2524
'Programming Language :: Python :: 3.11',
2625
'Programming Language :: Python :: 3.12',
@@ -38,7 +37,7 @@ classifiers = [
3837
'Topic :: Software Development :: Libraries :: Python Modules',
3938
'Topic :: Internet',
4039
]
41-
requires-python = '>=3.9'
40+
requires-python = '>=3.10'
4241
dependencies = [
4342
'pydantic>=2.7.0',
4443
'python-dotenv>=0.21.0',

0 commit comments

Comments
 (0)