Skip to content

Commit 3d96fa1

Browse files
authored
Merge branch 'main' into mk/sdk-1716/sdk-test-harness-v3
2 parents c1064f3 + a49588d commit 3d96fa1

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-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", "3.14"]
2121

2222
steps:
2323
- uses: actions/checkout@v4
@@ -80,7 +80,7 @@ jobs:
8080
strategy:
8181
fail-fast: false
8282
matrix:
83-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
83+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
8484

8585
steps:
8686
- 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ 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",
2019
"Programming Language :: Python :: 3.13",
20+
"Programming Language :: Python :: 3.14",
2121
"Topic :: Software Development",
2222
"Topic :: Software Development :: Libraries",
2323
]
@@ -27,7 +27,7 @@ exclude = [
2727
]
2828

2929
[tool.poetry.dependencies]
30-
python = ">=3.9"
30+
python = ">=3.10"
3131
certifi = ">=2018.4.16"
3232
expiringdict = ">=1.1.4"
3333
pyRFC3339 = ">=1.0"
@@ -85,7 +85,7 @@ urllib3 = ">=1.26.0"
8585
jinja2 = "3.1.3"
8686

8787
[tool.mypy]
88-
python_version = "3.9"
88+
python_version = "3.10"
8989
ignore_missing_imports = true
9090
install_types = true
9191
non_interactive = true

0 commit comments

Comments
 (0)