We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
It looks like typing_extensions is imported here unconditionally, but the version constraint here only installs it for python < 3.11.
typing_extensions
In a fresh virtualenv with python 3.11+:
python -m pip install cattrs
Run the first example from the readme:
import cattrs cattrs.structure([1.0, 2, "3"], tuple[int, int, int])
Traceback:
Traceback (most recent call last): File "<stdin>", line 1, in <module> File "~/.virtualenvs/cattrs/lib/python3.11/site-packages/cattrs/__init__.py", line 1, in <module> from .converters import BaseConverter, Converter, GenConverter, UnstructureStrategy File "~/.virtualenvs/cattrs/lib/python3.11/site-packages/cattrs/converters.py", line 58, in <module> from .dispatch import HookFactory, MultiStrategyDispatch, StructureHook, UnstructureHook File "~/.virtualenvs/cattrs/lib/python3.11/site-packages/cattrs/dispatch.py", line 5, in <module> from typing_extensions import TypeAlias ModuleNotFoundError: No module named 'typing_extensions'
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description
It looks like
typing_extensions
is imported here unconditionally, but the version constraint here only installs it for python < 3.11.What I Did
In a fresh virtualenv with python 3.11+:
Run the first example from the readme:
Traceback:
The text was updated successfully, but these errors were encountered: