Skip to content

Commit 1afcd62

Browse files
committed
feat: Drop support for python 3.9
Python 3.9 was EOL as of October 31st, 2025.
1 parent 54e62cc commit 1afcd62

File tree

5 files changed

+7
-8
lines changed

5 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
@@ -71,7 +71,7 @@ jobs:
7171
strategy:
7272
fail-fast: false
7373
matrix:
74-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
74+
python-version: ["3.10", "3.11", "3.12", "3.13"]
7575

7676
steps:
7777
- uses: actions/checkout@v4

.github/workflows/manual-publish.yml

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

2222
- uses: actions/setup-python@v5
2323
with:
24-
python-version: 3.9
24+
python-version: 3.10
2525

2626
- name: Install poetry
2727
uses: abatilo/actions-poetry@7b6d33e44b4f08d7021a1dee3c044e9c253d6439

.github/workflows/release-please.yml

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

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
## Supported Python versions
1616

17-
This version of the LaunchDarkly SDK is compatible with Python 3.9+.
17+
This version of the LaunchDarkly SDK is compatible with Python 3.10+.
1818

1919
## Getting started
2020

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ classifiers = [
1313
"License :: OSI Approved :: Apache Software License",
1414
"Operating System :: OS Independent",
1515
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3.9",
1716
"Programming Language :: Python :: 3.10",
1817
"Programming Language :: Python :: 3.11",
1918
"Programming Language :: Python :: 3.12",
@@ -27,7 +26,7 @@ exclude = [
2726
]
2827

2928
[tool.poetry.dependencies]
30-
python = ">=3.9"
29+
python = ">=3.10"
3130
certifi = ">=2018.4.16"
3231
expiringdict = ">=1.1.4"
3332
pyRFC3339 = ">=1.0"
@@ -85,7 +84,7 @@ urllib3 = ">=1.26.0"
8584
jinja2 = "3.1.3"
8685

8786
[tool.mypy]
88-
python_version = "3.9"
87+
python_version = "3.10"
8988
ignore_missing_imports = true
9089
install_types = true
9190
non_interactive = true

0 commit comments

Comments
 (0)