-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Referencing typeshed's own local stubs in editors #11102
Comments
Maybe easier than setting up editable installs is just setting PYTHONPATH in your editor |
Ok so configuring "python.autoComplete.extraPaths": [
"${workspaceFolder}/stubs/redis"
] However, there's PYTHONPATH=stubs/redis I could change the default workspace setting to |
microsoft/pylance-release#5209 (comment)
|
I have created a small script for myself that indiscriminately adds all stubs to import os
from pathlib import Path
def main() -> None:
vscodeFolder = Path(__file__).parent
stubsFolder = vscodeFolder / ".." / "stubs"
pythonPath = f"{os.pathsep}stubs{os.path.sep}".join(["PYTHONPATH=$PYTHONPATH", *os.listdir(stubsFolder)])
with open(vscodeFolder / ".env", "w") as venvFile:
venvFile.write(pythonPath)
if __name__ == "__main__":
main() |
I've had a certain annoying pain point for quite some time with typeshed stubs.
From microsoft/pylance-release#5209 :
pip install types-*
inside typeshed is of limited use [...]One option is to use relative imports, but that can lead to going up many parents, and doesn't solve the issue when writing tests (all the openpyxl tests I wrote were painful because I could not trust my editor).
Another possible solution brought by Eric Traut:
I don't have the most experience working with editable installs, but that would require writing a
pyproject.toml
for each stub right? Could it be done dynamically with a script?I'd love to hear thoughts and experiences from other contributors. Especially if you use different tooling than I do (VSCode+Pylance)
Ref.: #8774
The text was updated successfully, but these errors were encountered: