| commit | 890a03eaa1ffcdf6c094b991e404badb9caf35bc | [log] [tgz] |
|---|---|---|
| author | Alex Waygood <Alex.Waygood@Gmail.com> | Mon Jun 12 17:43:53 2023 +0100 |
| committer | GitHub <noreply@github.com> | Mon Jun 12 18:43:53 2023 +0200 |
| tree | c44457ca13ee328019c88cf2ef8012a99d72a4af | |
| parent | a12832998e87c49ec083710f0e776d35b0852451 [diff] |
Unskip typeguard tests in the third-party workflow (#235)
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.