-
Notifications
You must be signed in to change notification settings - Fork 220
Add py.typed
marker to pylsp
imports to be analysed with mypy
#641
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @krassowski!
Quick note/question here, doesn't the new |
I think you're right @dalthviz, good catch! @krassowski, could you take care of that in another PR? |
Hmm. I ran
I think this is happening because
I think I will still open another PR to add it to For reference the Line 18 in 70d9f12
and we use python-lsp-server/pyproject.toml Lines 4 to 5 in 70d9f12
|
Just confirming that downgrading diff --git a/pyproject.toml b/pyproject.toml
index f9c6a52..b718e42 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -2,7 +2,7 @@
# Copyright 2021- Python Language Server Contributors.
[build-system]
-requires = ["setuptools>=61.2.0", "setuptools_scm[toml]>=3.4.3"]
+requires = ["setuptools<=68.0.0", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[project] Leads to However, adding
I think this might be an interaction with |
Closes #640