[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 <Alex.Waygood@Gmail.com>
This commit is contained in:
github-actions[bot]
2022-11-19 16:49:37 -08:00
committed by GitHub
parent f62f402127
commit c10ed87f6e
3 changed files with 1 additions and 13 deletions

View File

@@ -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

View File

@@ -1 +1 @@
version = "65.5.*"
version = "65.6.*"

View File

@@ -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: ...