| commit | 7c4bc2e883f1ae3b35d7575317de935ec813b92d | [log] [tgz] |
|---|---|---|
| author | Alex Waygood <Alex.Waygood@Gmail.com> | Sat Jun 03 12:03:21 2023 +0100 |
| committer | GitHub <noreply@github.com> | Sat Jun 03 04:03:21 2023 -0700 |
| tree | f2304cb480a1675ea36961421eb0e4455ae93e03 | |
| parent | d95cc228ea96feec105592a9902e5b2d6cc048a9 [diff] |
Skip `cattrs` tests on 3.7 (#214) Temporary workaround for #213 until the tests pass on 3.7 again
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.