| commit | 8a1ffe6277ed8a4edab40d70dfbfba8bbd25193a | [log] [tgz] |
|---|---|---|
| author | Alex Waygood <Alex.Waygood@Gmail.com> | Wed Jun 07 14:11:39 2023 +0100 |
| committer | GitHub <noreply@github.com> | Wed Jun 07 06:11:39 2023 -0700 |
| tree | e4958dd52122307825da2a8bbd5806879fec4c29 | |
| parent | 0363a6d51884017b8b1a77a0e38fe02327edeb14 [diff] |
Fix pydantic tests (#224)
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.