-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[setuptools] Bump to 75.0.* (#12668)
Co-authored-by: Avasam <[email protected]>
- Loading branch information
Showing
18 changed files
with
84 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
import distutils.command.sdist | ||
import distutils.config | ||
|
||
d = distutils.config.PyPIRCCommand | ||
c = distutils.command.sdist.sdist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
from . import ( | ||
bdist as bdist, | ||
bdist_rpm as bdist_rpm, | ||
build as build, | ||
build_clib as build_clib, | ||
build_ext as build_ext, | ||
build_py as build_py, | ||
# build_scripts as build_scripts, | ||
# check as check, | ||
# clean as clean, | ||
install as install, | ||
# install_data as install_data, | ||
# install_headers as install_headers, | ||
install_lib as install_lib, | ||
install_scripts as install_scripts, | ||
sdist as sdist, | ||
) | ||
|
||
# Commented out commands are not stubbed. | ||
# (Many of these may be implementation details, | ||
# but they can be added if people ask for them) | ||
__all__ = [ | ||
"build", | ||
"build_py", | ||
"build_ext", | ||
"build_clib", | ||
# "build_scripts", | ||
# "clean", | ||
"install", | ||
"install_lib", | ||
# "install_headers", | ||
"install_scripts", | ||
# "install_data", | ||
"sdist", | ||
"bdist", | ||
# "bdist_dumb", | ||
"bdist_rpm", | ||
# "check", | ||
] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
stubs/setuptools/setuptools/_distutils/command/__init__.pyi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
from . import ( | ||
bdist as bdist, | ||
bdist_rpm as bdist_rpm, | ||
build as build, | ||
build_clib as build_clib, | ||
build_ext as build_ext, | ||
build_py as build_py, | ||
# build_scripts as build_scripts, | ||
# check as check, | ||
# clean as clean, | ||
install as install, | ||
# install_data as install_data, | ||
# install_headers as install_headers, | ||
install_lib as install_lib, | ||
install_scripts as install_scripts, | ||
sdist as sdist, | ||
) | ||
|
||
# Commented out commands are not stubbed. | ||
# (Many of these may be implementation details, | ||
# but they can be added if people ask for them) | ||
__all__ = [ | ||
"build", | ||
"build_py", | ||
"build_ext", | ||
"build_clib", | ||
# "build_scripts", | ||
# "clean", | ||
"install", | ||
"install_lib", | ||
# "install_headers", | ||
"install_scripts", | ||
# "install_data", | ||
"sdist", | ||
"bdist", | ||
# "bdist_dumb", | ||
"bdist_rpm", | ||
# "check", | ||
] |
30 changes: 0 additions & 30 deletions
30
stubs/setuptools/setuptools/_distutils/command/register.pyi
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.