Update setuptools to 65.1.* (#8565)

Fixes #8563
This commit is contained in:
Kevin Kirsche
2022-08-18 21:16:24 -04:00
committed by GitHub
parent f9450dcf8b
commit 80ce12e295
3 changed files with 1 additions and 20 deletions

View File

@@ -1 +1 @@
version = "64.0.*"
version = "65.1.*"

View File

@@ -1,16 +0,0 @@
from _typeshed import StrOrBytesPath
from distutils.cmd import Command
from typing import Any, ClassVar
class bdist_wininst(Command):
description: ClassVar[str]
user_options: ClassVar[list[tuple[Any, ...]]]
boolean_options: ClassVar[list[str]]
def initialize_options(self) -> None: ...
def finalize_options(self) -> None: ...
def run(self) -> None: ...
def get_inidata(self) -> str: ...
def create_exe(self, arcname: StrOrBytesPath, fullname: str, bitmap: StrOrBytesPath | None = ...) -> None: ...
def get_installer_filename(self, fullname: str) -> str: ...
def get_exe_bytes(self) -> bytes: ...

View File

@@ -6,9 +6,6 @@ class winreg:
HKEY_LOCAL_MACHINE: Any
HKEY_CLASSES_ROOT: Any
def msvc9_find_vcvarsall(version): ...
def msvc9_query_vcvarsall(ver, arch: str = ..., *args, **kwargs): ...
PLAT_SPEC_TO_RUNTIME: Any
def msvc14_get_vc_env(plat_spec): ...