-
-
Notifications
You must be signed in to change notification settings - Fork 503
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build/pkgs/exceptiongroup: Require >= 1.2.0
- Loading branch information
Matthias Koeppe
committed
Mar 26, 2024
1 parent
70920fc
commit 5dfedfc
Showing
4 changed files
with
9 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
exceptiongroup | ||
# According to https://github.com/agronholm/exceptiongroup/blob/main/CHANGES.rst, | ||
# 1.20 provides a backport from Python 3.12.1 | ||
exceptiongroup >=1.2.0 |
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,3 +1,3 @@ | ||
# According to https://pypi.org/project/importlib-metadata/, | ||
# 4.13 provides the features of Python 3.11 importlib.metadata | ||
importlib_metadata >=4.13; python_version<"3.11" | ||
# 4.13 provides the features of Python 3.12 importlib.metadata | ||
importlib_metadata >=6.5; python_version<"3.12" |
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,3 +1,3 @@ | ||
# According to https://pypi.org/project/importlib-resources/, | ||
# version 5.7 provides the features of Python 3.11 importlib.resources | ||
importlib_resources >= 5.7; python_version<"3.11" | ||
# version 5.12 provides the features of Python 3.12 importlib.resources | ||
importlib_resources >= 5.12; python_version<"3.12" |
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,3 +1,3 @@ | ||
# According to https://github.com/python/typing_extensions/blob/main/CHANGELOG.md, | ||
# version 4.4.0 adds another Python 3.11 typing backport | ||
typing_extensions >= 4.4.0; python_version<'3.11' | ||
# version 4.7.0 adds another Python 3.12 typing backport | ||
typing_extensions >= 4.7.0; python_version<'3.12' |