Skip to content

Commit 1d8652a

Browse files
committed
remove dry_run
1 parent 7fbf0b0 commit 1d8652a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

stubs/setuptools/setuptools/_distutils/compilers/C/cygwin.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class Compiler(unix.Compiler):
2424
linker_dll: str
2525
linker_dll_cxx: str
2626
dll_libraries: list[str]
27-
def __init__(self, verbose: bool = False, dry_run: bool = False, force: bool = False) -> None: ...
27+
def __init__(self, verbose: bool = False, force: bool = False) -> None: ...
2828
@property
2929
@deprecated(
3030
"gcc_version attribute of CygwinCCompiler is deprecated. "
@@ -55,7 +55,7 @@ class Compiler(unix.Compiler):
5555

5656
class MinGW32Compiler(Compiler):
5757
compiler_type: ClassVar[str]
58-
def __init__(self, verbose: bool = False, dry_run: bool = False, force: bool = False) -> None: ...
58+
def __init__(self, verbose: bool = False, force: bool = False) -> None: ...
5959
def runtime_library_dir_option(self, dir: str) -> NoReturn: ...
6060

6161
CONFIG_H_OK: Final = "ok"

stubs/setuptools/setuptools/_distutils/compilers/C/zos.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from . import unix
77
class Compiler(unix.Compiler):
88
src_extensions: ClassVar[list[str]]
99
zos_compiler: Literal["ibm-openxl", "ibm-xlclang", "ibm-xlc"]
10-
def __init__(self, verbose: bool = False, dry_run: bool = False, force: bool = False) -> None: ...
10+
def __init__(self, verbose: bool = False, force: bool = False) -> None: ...
1111
def runtime_library_dir_option(self, dir: str) -> str: ...
1212
def link(
1313
self,

0 commit comments

Comments
 (0)