-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remote API for Python: Missing typing-extensions
dependency in pyproject.toml
#1335
Comments
Good catch. Out of curiosity, is this causing build issues for you? I ask since our test suite hasn't encountered difficulties due to the lack of an explicit |
@RyanGIScott I encountered this when starting a fresh Python 3.10 Poetry project from a base Python 3.10 installation, something like:
As you point out, |
Ah yes, that nicely explains why the |
Tricky. I suppose if we really wanted to be thorough, we'd have first have to run |
@RyanGIScott I tested
(Edited to reflect |
#1336 adds an explicit |
pyproject.toml
is missing a dependency ontyping-extensions
, which is required forfrom typing_extensions import Literal
incryptol/__init__.py
. Addingtyping-extensions = "^4.1.1"
(or an earlier version that correctly definestyping_extensions.Literal
) to[tool.poetry.dependencies]
inpyproject.toml
(or runningpoetry add typing-extensions
fromcryptol-remote-api/python
) would account for this dependency.The text was updated successfully, but these errors were encountered: