| commit | f78d8a102eb61ffd996da0688dab81e91aaaa0aa | [log] [tgz] |
|---|---|---|
| author | Alex Waygood <Alex.Waygood@Gmail.com> | Sun Jun 11 11:16:29 2023 +0100 |
| committer | GitHub <noreply@github.com> | Sun Jun 11 12:16:29 2023 +0200 |
| tree | 30a3bbb5b57c7231748897894391ec23c725d638 | |
| parent | 520dcd1e2ac32d332d08345d5459ca3bde76a98b [diff] |
Skip cattrs tests on 3.8 (#231) Temporary workaround for the the failures in #230.
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.