Add py.typed marker to pylsp imports to be analysed with mypy#641
Add py.typed marker to pylsp imports to be analysed with mypy#641ccordoba12 merged 1 commit intopython-lsp:developfrom
py.typed marker to pylsp imports to be analysed with mypy#641Conversation
|
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