Skip to content

Commit 369e120

Browse files
authored
feat: Drop support for python 3.9 (#40)
1 parent 211d152 commit 369e120

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",
@@ -26,7 +25,7 @@ packages = [
2625

2726

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

@@ -55,13 +54,13 @@ jinja2 = "3.1.3"
5554

5655

5756
[tool.mypy]
58-
python_version = "3.9"
57+
python_version = "3.10"
5958
install_types = true
6059
non_interactive = true
6160

6261

6362
[tool.isort]
64-
py_version=39
63+
py_version=310
6564

6665

6766
[tool.pytest.ini_options]

0 commit comments

Comments
 (0)