Releases: pypa/wheel
Releases · pypa/wheel
0.46.1
0.46.0
- Dropped support for Python 3.8
- Removed the
bdist_wheelsetuptools command implementation and entry point. Thewheel.bdist_wheelmodule is now just an alias tosetuptools.command.bdist_wheel, emitting a deprecation warning on import. - Removed vendored
packagingin favor of a run-time dependency on it - Made the
wheel.metadatamodule private (with a deprecation warning if it's imported - Made the
wheel.clipackage private (no deprecation warning) - Fixed an exception when calling the
convertcommand with an empty description field
0.45.1
- Fixed pure Python wheels converted from eggs and wininst files having the ABI tag in the file name
0.45.0
-
Refactored the
convertcommand to not need setuptools to be installed -
Don't configure setuptools logging unless running
bdist_wheel -
Added a redirection from
wheel.bdist_wheel.bdist_wheeltosetuptools.command.bdist_wheel.bdist_wheelto improve compatibility withsetuptools' latest fixes.Projects are still advised to migrate away from the deprecated module and import the
setuptools' implementation explicitly. (PR by @abravalheri)
0.44.0
- Canonicalized requirements in METADATA file (PR by Wim Jeantine-Glenn)
- Deprecated the
bdist_wheelmodule, as the code was migrated tosetuptoolsitself
0.43.0
- Dropped support for Python 3.7
- Updated vendored
packagingto 24.0
0.42.0
- Allowed removing build tag with
wheel tags --build "" - Fixed
wheel packandwheel tagswriting updatedWHEELfields after a blank line, causing other tools to ignore them - Fixed
wheel packandwheel tagswritingWHEELwith CRLF line endings or a mix of CRLF and LF - Fixed
wheel pack --build-number ""not removing build tag fromWHEEL(above changes by Benjamin Gilbert)
0.41.3
- Updated vendored
packagingto 23.2 - Fixed ABI tag generation for CPython 3.13a1 on Windows (PR by Sam Gross)