Widen the cmdclass parameter of setuptools.setup (#7458)

This commit is contained in:
Bas van Beek
2022-03-08 14:07:44 +01:00
committed by GitHub
parent 967f83db09
commit 70988f1811

View File

@@ -43,7 +43,7 @@ def setup(
license: str = ...,
keywords: list[str] | str = ...,
platforms: list[str] | str = ...,
cmdclass: Mapping[str, type[Command]] = ...,
cmdclass: Mapping[str, type[_Command]] = ...,
data_files: list[tuple[str, list[str]]] = ...,
package_dir: Mapping[str, str] = ...,
obsoletes: list[str] = ...,