Bump setuptools to 69.0.* (#11069)

Co-authored-by: Avasam <samuel.06@hotmail.com>
This commit is contained in:
Alex Waygood
2023-11-28 22:23:29 +00:00
committed by GitHub
parent e2a393897c
commit e7c57b5a6d
12 changed files with 23 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
from typing_extensions import Literal
def newer(source, target): ...
def newer_pairwise(sources, targets, newer=...): ...
def newer_group(sources, target, missing: Literal["error", "newer", "ignore"] = "error"): ...
def newer_pairwise_group(sources, targets, *, newer=...): ...

View File

@@ -1 +1 @@
def newer_pairwise_group(sources_groups, targets): ...
from ._distutils._modified import newer_group as newer_group, newer_pairwise_group as newer_pairwise_group

View File

@@ -18,5 +18,7 @@ TemplateError = _distutils_errors.DistutilsTemplateError
UnknownFileError = _distutils_errors.UnknownFileError
BaseError = _distutils_errors.DistutilsError
class InvalidConfigError(OptionError): ...
class RemovedConfigError(OptionError): ...
class RemovedCommandError(BaseError, RuntimeError): ...
class PackageDiscoveryError(BaseError, RuntimeError): ...

View File

@@ -0,0 +1,8 @@
from ._distutils._modified import (
newer as newer,
newer_group as newer_group,
newer_pairwise as newer_pairwise,
newer_pairwise_group as newer_pairwise_group,
)
__all__ = ["newer", "newer_pairwise", "newer_group", "newer_pairwise_group"]