From c10ed87f6ea3499eb758fb833836a18b74f85d2a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 19 Nov 2022 16:49:37 -0800 Subject: [PATCH] [stubsabot] Bump setuptools to 65.6.* (#9227) Release: https://pypi.org/pypi/setuptools/65.6.0 Homepage: https://github.com/pypa/setuptools Changelog: https://setuptools.pypa.io/en/stable/history.html Diff: https://github.com/pypa/setuptools/compare/v65.5.1...v65.6.0 Stubsabot analysis of the diff between the two releases: - 0 public Python files have been added. - 0 files included in typeshed's stubs have been deleted. - 40 files included in typeshed's stubs have been modified or renamed. - Total lines of Python code added: 637. - Total lines of Python code deleted: 630. Co-authored-by: stubsabot <> Co-authored-by: Alex Waygood --- stubs/setuptools/@tests/stubtest_allowlist.txt | 3 --- stubs/setuptools/METADATA.toml | 2 +- stubs/setuptools/setuptools/_distutils/log.pyi | 9 --------- 3 files changed, 1 insertion(+), 13 deletions(-) diff --git a/stubs/setuptools/@tests/stubtest_allowlist.txt b/stubs/setuptools/@tests/stubtest_allowlist.txt index 19cb1097d..59eaa688f 100644 --- a/stubs/setuptools/@tests/stubtest_allowlist.txt +++ b/stubs/setuptools/@tests/stubtest_allowlist.txt @@ -27,8 +27,5 @@ pkg_resources.py31compat pkg_resources.split_sections pkg_resources.to_filename -# Unclear import from stdlib/sub-classing related error -setuptools._distutils.core.Distribution.parse_config_files - # Only present if docutils is installed setuptools._distutils.command.check.SilentReporter diff --git a/stubs/setuptools/METADATA.toml b/stubs/setuptools/METADATA.toml index 076ac5775..eee7ef031 100644 --- a/stubs/setuptools/METADATA.toml +++ b/stubs/setuptools/METADATA.toml @@ -1 +1 @@ -version = "65.5.*" +version = "65.6.*" diff --git a/stubs/setuptools/setuptools/_distutils/log.pyi b/stubs/setuptools/setuptools/_distutils/log.pyi index 549b569e7..7f4020b3e 100644 --- a/stubs/setuptools/setuptools/_distutils/log.pyi +++ b/stubs/setuptools/setuptools/_distutils/log.pyi @@ -6,15 +6,6 @@ WARN: int ERROR: int FATAL: int -class Log: - def __init__(self, threshold: int = ...) -> None: ... - def log(self, level: int, msg: str, *args: Any) -> None: ... - def debug(self, msg: str, *args: Any) -> None: ... - def info(self, msg: str, *args: Any) -> None: ... - def warn(self, msg: str, *args: Any) -> None: ... - def error(self, msg: str, *args: Any) -> None: ... - def fatal(self, msg: str, *args: Any) -> None: ... - def log(level: int, msg: str, *args: Any) -> None: ... def debug(msg: str, *args: Any) -> None: ... def info(msg: str, *args: Any) -> None: ...