Skip to content

Commit a2d0be9

Browse files
committed
feat: Drop support for python 3.9
1 parent 1ae3eb8 commit a2d0be9

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
20+
python-version: ["3.10", "3.11", "3.12", "3.13"]
2121

2222
steps:
2323
- uses: actions/checkout@v4
@@ -48,7 +48,7 @@ jobs:
4848
strategy:
4949
fail-fast: false
5050
matrix:
51-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
51+
python-version: ["3.10", "3.11", "3.12", "3.13"]
5252

5353
steps:
5454
- uses: actions/checkout@v4

.github/workflows/manual-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- uses: actions/setup-python@v5
2121
with:
22-
python-version: 3.9
22+
python-version: 3.10
2323

2424
- name: Install poetry
2525
run: pipx install poetry

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/setup-python@v5
2424
if: ${{ steps.release.outputs.releases_created == 'true' }}
2525
with:
26-
python-version: 3.9
26+
python-version: 3.10
2727

2828
- name: Install poetry
2929
if: ${{ steps.release.outputs.releases_created == 'true' }}

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ classifiers = [
1212
"License :: OSI Approved :: Apache Software License",
1313
"Operating System :: OS Independent",
1414
"Programming Language :: Python :: 3",
15-
"Programming Language :: Python :: 3.9",
1615
"Programming Language :: Python :: 3.10",
1716
"Programming Language :: Python :: 3.11",
1817
"Programming Language :: Python :: 3.12",
@@ -27,7 +26,7 @@ packages = [
2726

2827

2928
[tool.poetry.dependencies]
30-
python = "^3.9"
29+
python = "^3.10"
3130
openfeature-sdk = ">=0.8.0,<1"
3231
launchdarkly-server-sdk = "<10"
3332

@@ -56,13 +55,13 @@ jinja2 = "3.1.3"
5655

5756

5857
[tool.mypy]
59-
python_version = "3.9"
58+
python_version = "3.10"
6059
install_types = true
6160
non_interactive = true
6261

6362

6463
[tool.isort]
65-
py_version=39
64+
py_version=310
6665

6766

6867
[tool.pytest.ini_options]

0 commit comments

Comments
 (0)