Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactored the wheel convert command to not require setuptools #640

Merged
merged 9 commits into from
Nov 8, 2024
Merged
1 change: 1 addition & 0 deletions docs/news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Release Notes

**UNRELEASED**

- Refactored the ``convert`` command to not need setuptools to be installed
- Added a redirection from ``wheel.bdist_wheel.bdist_wheel`` to
``setuptools.command.bdist_wheel.bdist_wheel`` to improve compatibility with
``setuptools``' latest fixes.
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ exclude_also = [

[tool.coverage.report]
show_missing = true
exclude_also = [
"@abstractmethod",
]

[tool.ruff]
extend-exclude = ["src/wheel/vendored"]
Expand Down
Loading
Loading