Skip to content

Commit 8f94da6

Browse files
feat!: Drop support for Python 3.8 (eol 2024-10-07) (#48)
Release-As: 0.9.0
1 parent 5ba0905 commit 8f94da6

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
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
python-version: ["3.8", "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.8", "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

.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.8
24+
python-version: 3.9
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.8
30+
python-version: 3.9
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
@@ -8,7 +8,7 @@
88

99
## Supported Python versions
1010

11-
This version of the library has a minimum Python version of 3.8.
11+
This version of the library has a minimum Python version of 3.9.
1212

1313
## Getting started
1414

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,<4"
30+
python = ">=3.9,<4"
3131
launchdarkly-server-sdk = ">=9.4.0"
3232
chevron = "=0.14.0"
3333

@@ -56,7 +56,7 @@ urllib3 = ">=1.26.0"
5656
jinja2 = "3.1.6"
5757

5858
[tool.mypy]
59-
python_version = "3.8"
59+
python_version = "3.9"
6060
ignore_missing_imports = true
6161
install_types = true
6262
non_interactive = true

0 commit comments

Comments
 (0)