Skip to content

Commit cef8e50

Browse files
feat!: Drop support for Python 3.8 (eol 2024-10-07) (#33)
Release-As: 1.1.0
1 parent 9705a4d commit cef8e50

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
python-version: ["3.9", "3.10", "3.11", "3.12"]
19+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2020

2121
steps:
2222
- uses: actions/checkout@v4
@@ -46,7 +46,7 @@ jobs:
4646

4747
strategy:
4848
matrix:
49-
python-version: ["3.9", "3.10", "3.11", "3.12"]
49+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
5050

5151
steps:
5252
- uses: actions/checkout@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ LaunchDarkly overview
1414
Supported Python versions
1515
-----------------------
1616

17-
This version of the library has a minimum Python version of 3.8.
17+
This version of the library has a minimum Python version of 3.9.
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.8",
1716
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",
2019
"Programming Language :: Python :: 3.12",
20+
"Programming Language :: Python :: 3.13",
2121
"Topic :: Software Development",
2222
"Topic :: Software Development :: Libraries",
2323
]
@@ -27,7 +27,7 @@ exclude = [
2727
]
2828

2929
[tool.poetry.dependencies]
30-
python = ">=3.8"
30+
python = ">=3.9"
3131
launchdarkly-server-sdk = ">=9.4.0"
3232
opentelemetry-sdk = ">=1.24.0"
3333

@@ -55,7 +55,7 @@ urllib3 = ">=1.26.0"
5555
jinja2 = "3.1.6"
5656

5757
[tool.mypy]
58-
python_version = "3.8"
58+
python_version = "3.9"
5959
ignore_missing_imports = true
6060
install_types = true
6161
non_interactive = true

0 commit comments

Comments
 (0)