Like `typing._eval_type`, but lets older Python versions use newer typing features.
Project Links
Meta
Author: Alex Hall
Requires Python: >=3.8
Classifiers
License
- OSI Approved :: MIT License
Programming Language
- Python
- Python :: 3
- Python :: 3.8
- Python :: 3.9
- Python :: 3.10
- Python :: 3.11
- Python :: 3.12
- Python :: 3.13
eval_type_backport
This is a tiny package providing a replacement for typing._eval_type
to support newer typing features in older Python versions.
Yes, that's very specific, and yes, typing._eval_type
is a protected function that you shouldn't normally be using. Really this package is specifically made for https://github.com/pydantic/pydantic/issues/7873.
Specifically, this transforms X | Y
into typing.Union[X, Y]
and list[X]
into typing.List[X]
etc. (for all the types made generic in PEP 585)
if the original syntax is not supported in the current Python version.
Install
From PyPI:
pip install eval-type-backport
or with Conda:
conda install -c conda-forge eval-type-backport
Dec 21, 2024
0.2.2
Dec 21, 2024
0.2.1
Apr 20, 2024
0.2.0
Dec 17, 2023
0.1.3
Dec 17, 2023
0.1.2
Dec 16, 2023
0.1.1
Dec 16, 2023
0.1.0
Nov 22, 2023
0.0.1