File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,11 +33,6 @@ setuptools._distutils.archive_util.ARCHIVE_FORMATS
3333setuptools._distutils.archive_util.check_archive_formats
3434setuptools._distutils.cmd.Command.dump_options
3535setuptools._distutils.command.build_ext.extension_name_re
36- setuptools._distutils.command.build_scripts
37- setuptools._distutils.command.check
38- setuptools._distutils.command.clean
39- setuptools._distutils.command.install_data
40- setuptools._distutils.command.install_headers
4136setuptools._distutils.command.install.HAS_USER_SITE
4237setuptools._distutils.command.install.INSTALL_SCHEMES
4338setuptools._distutils.command.install.SCHEME_KEYS
@@ -70,7 +65,6 @@ setuptools._distutils.command.build_scripts
7065setuptools._distutils.command.check
7166setuptools._distutils.command.clean
7267setuptools._distutils.command.config
73- setuptools._distutils.command.install_data
7468setuptools._distutils.command.install_egg_info
7569setuptools._distutils.command.install_headers
7670setuptools._distutils.compat.numpy
Original file line number Diff line number Diff line change 1- version = " ~=77.0.2 "
1+ version = " 78.1.* "
22upstream_repository = " https://github.com/pypa/setuptools"
33extra_description = """ \
44Given that `pkg_resources` is typed since `setuptools >= 71.1`, \
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ from . import (
99 # check as check,
1010 # clean as clean,
1111 install as install ,
12- # install_data as install_data,
12+ install_data as install_data ,
1313 # install_headers as install_headers,
1414 install_lib as install_lib ,
1515 install_scripts as install_scripts ,
@@ -30,7 +30,7 @@ __all__ = [
3030 "install_lib" ,
3131 # "install_headers",
3232 "install_scripts" ,
33- # "install_data",
33+ "install_data" ,
3434 "sdist" ,
3535 "bdist" ,
3636 # "bdist_dumb",
Original file line number Diff line number Diff line change 11from _typeshed import Incomplete
2- from typing import ClassVar
2+ from collections import ChainMap
3+ from typing import Any , ClassVar
34
45from ..cmd import Command
56
@@ -34,7 +35,7 @@ class install(Command):
3435 build_lib : Incomplete
3536 record : Incomplete
3637 def initialize_options (self ) -> None : ...
37- config_vars : Incomplete
38+ config_vars : ChainMap [ str , Any ] # Any: Same as sysconfig.get_config_vars
3839 install_libbase : Incomplete
3940 def finalize_options (self ) -> None : ...
4041 def dump_dirs (self , msg ) -> None : ...
Original file line number Diff line number Diff line change @@ -10,10 +10,8 @@ class Compiler(base.Compiler):
1010 obj_extension : ClassVar [str ]
1111 static_lib_extension : ClassVar [str ]
1212 shared_lib_extension : ClassVar [str ]
13- # This was accidentally removed upstream and should be back pretty soon.
14- # shared_lib_format: ClassVar[str]
15- # static_lib_format = shared_lib_format
16- static_lib_format : ClassVar [str ]
13+ shared_lib_format : ClassVar [str ]
14+ static_lib_format = shared_lib_format
1715 exe_extension : ClassVar [str ]
1816 initialized : bool
1917 def initialize (self , plat_name : str | None = None ) -> None : ...
Original file line number Diff line number Diff line change @@ -38,8 +38,6 @@ class Distribution(_Distribution):
3838 dependency_links : list [str ]
3939 setup_requires : list [str ]
4040 def __init__ (self , attrs : MutableMapping [str , Incomplete ] | None = None ) -> None : ...
41- def warn_dash_deprecation (self , opt : str , section : str ) -> str : ...
42- def make_option_lowercase (self , opt : str , section : str ) -> str : ...
4341 def parse_config_files (self , filenames : Iterable [StrPath ] | None = None , ignore_option_errors : bool = False ) -> None : ...
4442 def fetch_build_eggs (self , requires : str | Iterable [str ]): ...
4543 def get_egg_cache_dir (self ) -> str : ...
You can’t perform that action at this time.
0 commit comments