From 3d7c509177f4c7fcfef09dd91d09428ce0221b89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= Date: Tue, 19 Aug 2025 18:24:02 -0600 Subject: [PATCH 1/2] Include `tests` directory in SDist --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6cd0979..3035455 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,7 +60,7 @@ typing = [ ] [tool.hatch.build.targets.sdist] -include = ["backoff"] +include = ["backoff", "tests"] [tool.hatch.build.targets.wheel] include = ["backoff"] From 83648bb48ee9b240527def864ed98b2e3cdc40af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= Date: Tue, 19 Aug 2025 18:26:04 -0600 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04fc639..44dbc8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,10 @@ ## Unreleased +- Adapt test cases to pytest-asyncio 1.0 compatibility https://github.com/python-backoff/backoff/pull/1 - Use `inspect.iscoroutinefunction` instead of `asyncio.iscoroutinefunction` to avoid Python 3.14 deprecation warning https://github.com/python-backoff/backoff/pull/3 - Use uv for dependencies and packaging https://github.com/python-backoff/backoff/pull/7 +- Include tests in source distribution https://github.com/python-backoff/backoff/pull/13 ## [v2.2.1] - 2022-10-05