| commit | a12832998e87c49ec083710f0e776d35b0852451 | [log] [tgz] |
|---|---|---|
| author | Alex Waygood <Alex.Waygood@Gmail.com> | Mon Jun 12 01:56:35 2023 +0100 |
| committer | GitHub <noreply@github.com> | Sun Jun 11 17:56:35 2023 -0700 |
| tree | 6b215be17f15ffe26fe495c89943de435bfe0333 | |
| parent | f78d8a102eb61ffd996da0688dab81e91aaaa0aa [diff] |
Revert "Skip cattrs tests on 3.8" (#234) Revert "Skip cattrs tests on 3.8 (#231)" This reverts commit f78d8a102eb61ffd996da0688dab81e91aaaa0aa.
The typing_extensions module serves two related purposes:
typing.TypeGuard is new in Python 3.10, but typing_extensions allows users on previous Python versions to use it too.typing module.typing_extensions uses Semantic Versioning. 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.
typing_extensions supports Python versions 3.7 and higher.
See the documentation for a complete listing of module contents.
To run tests, navigate into the src/ directory and run test_typing_extensions.py.