setup.py #1496
setup.py
#1496
-
why there are no setup.py after 3.10.0.2 and what is installation proccess for the versions after that |
Beta Was this translation helpful? Give feedback.
Answered by
JelleZijlstra
Oct 25, 2023
Replies: 1 comment
-
I assume you are asking about https://github.com/python/typing_extensions. typing-extensions is now built using pyproject.toml (https://github.com/python/typing_extensions/blob/main/pyproject.toml), following PEP 517. If you have a source tree, you can install from it with e.g. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
JelleZijlstra
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I assume you are asking about https://github.com/python/typing_extensions.
typing-extensions is now built using pyproject.toml (https://github.com/python/typing_extensions/blob/main/pyproject.toml), following PEP 517. If you have a source tree, you can install from it with e.g.
pip install /path/to/typing-extensions
.