Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jd/tenacity
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8.4.0
Choose a base ref
...
head repository: jd/tenacity
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8.4.1
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jun 17, 2024

  1. Include tenacity.asyncio subpackage in release dist (#474)

    * Include tenacity.asyncio subpackage in release dist
    
    * Add changelog entry
    cdce8p authored Jun 17, 2024
    Copy the full SHA
    ee6a8f7 View commit details
Showing with 5 additions and 1 deletion.
  1. +3 −0 releasenotes/notes/fix-setuptools-config-3af71aa3592b6948.yaml
  2. +2 −1 setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
fixes:
- Fix setuptools config to include tenacity.asyncio package in release distributions.
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -23,9 +23,10 @@ classifier =
[options]
install_requires =
python_requires = >=3.8
packages = tenacity
packages = find:

[options.packages.find]
include = tenacity*
exclude = tests

[options.package_data]