File tree Expand file tree Collapse file tree 5 files changed +510
-235
lines changed Expand file tree Collapse file tree 5 files changed +510
-235
lines changed Original file line number Diff line number Diff line change 14
14
- id : end-of-file-fixer
15
15
- id : mixed-line-ending
16
16
args : ["--fix=lf"]
17
- - id : requirements-txt-fixer
18
17
- id : trailing-whitespace
18
+ exclude : " tests/cli/test_convert.py"
19
19
20
20
- repo : https://github.com/astral-sh/ruff-pre-commit
21
21
rev : v0.6.9
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ Release Notes
3
3
4
4
**UNRELEASED **
5
5
6
+ - Refactored the ``convert `` command to not need setuptools to be installed
6
7
- Added a redirection from ``wheel.bdist_wheel.bdist_wheel `` to
7
8
``setuptools.command.bdist_wheel.bdist_wheel `` to improve compatibility with
8
9
``setuptools ``' latest fixes.
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ build-backend = "flit_core.buildapi"
6
6
name = " wheel"
7
7
description = " A built-package format for Python"
8
8
readme = " README.rst"
9
+ license = {file = " LICENSE.txt" }
9
10
classifiers = [
10
11
" Development Status :: 5 - Production/Stable" ,
11
12
" Intended Audience :: Developers" ,
@@ -89,6 +90,9 @@ exclude_also = [
89
90
90
91
[tool .coverage .report ]
91
92
show_missing = true
93
+ exclude_also = [
94
+ " @abstractmethod" ,
95
+ ]
92
96
93
97
[tool .ruff ]
94
98
extend-exclude = [" src/wheel/vendored" ]
You can’t perform that action at this time.
0 commit comments