manually installing the typing_extensions by
python -m pip install -U typing_extensions
solves the problem .
in
https://github.com/pelme/htpy/blob/main/pyproject.toml
changing the line
"typing_extensions>=4.13.2 ; python_version<'3.13'",
to
"typing_extensions>=4.13.2 ; python_version>=3.13",
should repair it and also avoid the need to manually
install the typing_extensions .
manually installing the typing_extensions by
python -m pip install -U typing_extensionssolves the problem .
in
https://github.com/pelme/htpy/blob/main/pyproject.toml
changing the line
"typing_extensions>=4.13.2 ; python_version<'3.13'",to
"typing_extensions>=4.13.2 ; python_version>=3.13",should repair it and also avoid the need to manually
install the typing_extensions .