Skip to content

Commit e2bedab

Browse files
authored
feat: drop 3.7 support (#42)
We drop support for Python 3.7 from future releases.
1 parent b982cea commit e2bedab

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Test with Python ${{ matrix.python-version }}
1010
strategy:
1111
matrix:
12-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
12+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,12 @@ dynamic = ["version"]
88
description = "Python application configuration via the environment"
99
readme = "README.md"
1010
license = {file = "LICENSE"}
11-
requires-python = ">=3.7"
11+
requires-python = ">=3.8"
1212
authors = [
1313
{ name = "Datadog", email = "[email protected]" },
1414
]
1515
classifiers = [
1616
"Programming Language :: Python",
17-
"Programming Language :: Python :: 3.7",
1817
"Programming Language :: Python :: 3.8",
1918
"Programming Language :: Python :: 3.9",
2019
"Programming Language :: Python :: 3.10",
@@ -77,7 +76,7 @@ dependencies = [
7776
tests = "pytest -vv {args}"
7877

7978
[[tool.hatch.envs.tests.matrix]]
80-
python = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
79+
python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
8180

8281
[tool.hatch.envs.checks]
8382
python = "3.10"

0 commit comments

Comments
 (0)