Skip to content

Commit a2dee45

Browse files
packaging: Dropped support for Python 3.7
1 parent f10c18e commit a2dee45

File tree

4 files changed

+140
-990
lines changed

4 files changed

+140
-990
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 & 3 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",
@@ -155,7 +154,6 @@ commands = [
155154
"3.10" = ["3.10"]
156155
"3.9" = ["3.9"]
157156
"3.8" = ["3.8"]
158-
"3.7" = ["3.7"]
159157

160158
[tool.pytest.ini_options]
161159
filterwarnings = [

0 commit comments

Comments
 (0)