Skip to content

Commit c19c9fd

Browse files
packaging: Dropped support for Python 3.7 (#49)
1 parent f10c18e commit c19c9fd

File tree

4 files changed

+140
-992
lines changed

4 files changed

+140
-992
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ jobs:
3636
- "3.13"
3737
- "3.14"
3838
- "3.15"
39-
include:
40-
- os: ubuntu-22.04
41-
python-version: "3.7"
4239
steps:
4340
- name: Checkout code
4441
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
### Changed
6+
7+
- Drop support for Python 3.7 https://github.com/python-backoff/backoff/pull/49 (from @edgarrmondragon)
8+
59
## [v2.2.2] - 2025-11-17
610

711
### Fixed

pyproject.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "2.2.2"
44
description = "Function decoration for backoff and retry"
55
authors = [{ name = "Bob Green", email = "[email protected]" }]
66
maintainers = [{ name = "Edgar Ramírez-Mondragón", email = "[email protected]" }]
7-
requires-python = ">=3.7"
7+
requires-python = ">=3.8"
88
readme = "README.rst"
99
license = "MIT"
1010
keywords = [
@@ -20,7 +20,6 @@ classifiers = [
2020
"Operating System :: OS Independent",
2121
"Programming Language :: Python",
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.7",
2423
"Programming Language :: Python :: 3.8",
2524
"Programming Language :: Python :: 3.9",
2625
"Programming Language :: Python :: 3.10",
@@ -77,7 +76,6 @@ min_version = "4.22"
7776
requires = [ "tox", "tox-gh", "tox-uv" ]
7877
env_list = [
7978
"format",
80-
"3.7",
8179
"3.8",
8280
"3.9",
8381
"3.10",
@@ -101,7 +99,6 @@ commands = [
10199
[tool.tox.env.coverage]
102100
description = "generate coverage report"
103101
depends = [
104-
"3.7",
105102
"3.8",
106103
"3.9",
107104
"3.10",
@@ -155,7 +152,6 @@ commands = [
155152
"3.10" = ["3.10"]
156153
"3.9" = ["3.9"]
157154
"3.8" = ["3.8"]
158-
"3.7" = ["3.7"]
159155

160156
[tool.pytest.ini_options]
161157
filterwarnings = [

0 commit comments

Comments
 (0)