forked from python/typeshed
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump setuptools to 69.0.* (python#11069)
Co-authored-by: Avasam <[email protected]>
- Loading branch information
1 parent
e2a3938
commit e7c57b5
Showing
12 changed files
with
23 additions
and
4 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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,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=...): ... |
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 +1 @@ | ||
def newer_pairwise_group(sources_groups, targets): ... | ||
from ._distutils._modified import newer_group as newer_group, newer_pairwise_group as newer_pairwise_group |
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,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"] |