Skip to content

Commit 7caed78

Browse files
packaging: Rename from distribution from backoff to python-backoff (#42)
1 parent 74c49d0 commit 7caed78

File tree

5 files changed

+130
-129
lines changed

5 files changed

+130
-129
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
- Use uv for dependencies and packaging https://github.com/python-backoff/backoff/pull/7 (from @edgarrmondragon)
1717
- Remove duplicate classifier https://github.com/python-backoff/backoff/pull/37 (from @edgarrmondragon)
18+
- Rename project to `backoff` from `python-backoff` https://github.com/python-backoff/backoff/pull/42 (from @edgarrmondragon)
1819

1920
## [v2.2.1] - 2022-10-05
2021

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This guide will walk you through the basics of using backoff for retrying functi
77
Install backoff using pip:
88

99
```bash
10-
pip install backoff
10+
pip install python-backoff
1111
```
1212

1313
## Basic Concepts

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This module provides function decorators which can be used to wrap a function su
2323
Install via pip:
2424

2525
```bash
26-
pip install backoff
26+
pip install python-backoff
2727
```
2828

2929
Basic retry on exception:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "backoff"
2+
name = "python-backoff"
33
version = "2.2.1"
44
description = "Function decoration for backoff and retry"
55
authors = [{ name = "Bob Green", email = "[email protected]" }]

0 commit comments

Comments
 (0)