forked from kevancress/MeasureIt_ARCH
-
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 typing_extensions dependency 4.0.1 -> 4.12.2 kevancress#280
- Loading branch information
Showing
8 changed files
with
2,870 additions
and
1,471 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
Metadata-Version: 2.1 | ||
Name: typing_extensions | ||
Version: 4.12.2 | ||
Summary: Backported and Experimental Type Hints for Python 3.8+ | ||
Keywords: annotations,backport,checker,checking,function,hinting,hints,type,typechecking,typehinting,typehints,typing | ||
Author-email: "Guido van Rossum, Jukka Lehtosalo, Łukasz Langa, Michael Lee" <levkivskyi@gmail.com> | ||
Requires-Python: >=3.8 | ||
Description-Content-Type: text/markdown | ||
Classifier: Development Status :: 5 - Production/Stable | ||
Classifier: Environment :: Console | ||
Classifier: Intended Audience :: Developers | ||
Classifier: License :: OSI Approved :: Python Software Foundation License | ||
Classifier: Operating System :: OS Independent | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Programming Language :: Python :: 3 :: Only | ||
Classifier: Programming Language :: Python :: 3.8 | ||
Classifier: Programming Language :: Python :: 3.9 | ||
Classifier: Programming Language :: Python :: 3.10 | ||
Classifier: Programming Language :: Python :: 3.11 | ||
Classifier: Programming Language :: Python :: 3.12 | ||
Classifier: Programming Language :: Python :: 3.13 | ||
Classifier: Topic :: Software Development | ||
Project-URL: Bug Tracker, https://github.com/python/typing_extensions/issues | ||
Project-URL: Changes, https://github.com/python/typing_extensions/blob/main/CHANGELOG.md | ||
Project-URL: Documentation, https://typing-extensions.readthedocs.io/ | ||
Project-URL: Home, https://github.com/python/typing_extensions | ||
Project-URL: Q & A, https://github.com/python/typing/discussions | ||
Project-URL: Repository, https://github.com/python/typing_extensions | ||
|
||
# Typing Extensions | ||
|
||
[![Chat at https://gitter.im/python/typing](https://badges.gitter.im/python/typing.svg)](https://gitter.im/python/typing) | ||
|
||
[Documentation](https://typing-extensions.readthedocs.io/en/latest/#) – | ||
[PyPI](https://pypi.org/project/typing-extensions/) | ||
|
||
## Overview | ||
|
||
The `typing_extensions` module serves two related purposes: | ||
|
||
- Enable use of new type system features on older Python versions. For example, | ||
`typing.TypeGuard` is new in Python 3.10, but `typing_extensions` allows | ||
users on previous Python versions to use it too. | ||
- Enable experimentation with new type system PEPs before they are accepted and | ||
added to the `typing` module. | ||
|
||
`typing_extensions` is treated specially by static type checkers such as | ||
mypy and pyright. Objects defined in `typing_extensions` are treated the same | ||
way as equivalent forms in `typing`. | ||
|
||
`typing_extensions` uses | ||
[Semantic Versioning](https://semver.org/). The | ||
major version will be incremented only for backwards-incompatible changes. | ||
Therefore, it's safe to depend | ||
on `typing_extensions` like this: `typing_extensions >=x.y, <(x+1)`, | ||
where `x.y` is the first version that includes all features you need. | ||
|
||
## Included items | ||
|
||
See [the documentation](https://typing-extensions.readthedocs.io/en/latest/#) for a | ||
complete listing of module contents. | ||
|
||
## Contributing | ||
|
||
See [CONTRIBUTING.md](https://github.com/python/typing_extensions/blob/main/CONTRIBUTING.md) | ||
for how to contribute to `typing_extensions`. | ||
|
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,5 @@ | ||
typing_extensions.py,sha256=gwekpyG9DVG3lxWKX4ni8u7nk3We5slG98mA9F3DJQw,134451 | ||
typing_extensions-4.12.2.dist-info/LICENSE,sha256=Oy-B_iHRgcSZxZolbI4ZaEVdZonSaaqFNzv7avQdo78,13936 | ||
typing_extensions-4.12.2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81 | ||
typing_extensions-4.12.2.dist-info/METADATA,sha256=BeUQIa8cnYbrjWx-N8TOznM9UGW5Gm2DicVpDtRA8W0,3018 | ||
typing_extensions-4.12.2.dist-info/RECORD,, |
2 changes: 1 addition & 1 deletion
2
libs/typing_extensions-4.0.1.dist-info/WHEEL → .../typing_extensions-4.12.2.dist-info/WHEEL
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,4 +1,4 @@ | ||
Wheel-Version: 1.0 | ||
Generator: flit 3.5.1 | ||
Generator: flit 3.9.0 | ||
Root-Is-Purelib: true | ||
Tag: py3-none-any |
Oops, something went wrong.