Skip to content

Commit 4dedbaf

Browse files
authored
fix: provide upper bound on jedi pin (#9449)
## 📝 Summary closes #9446 closes #9447 Currently `jedi==0.20.0` is incompatible with `python-lsp` (`jedi<0.20.0` is hardcoded). As such, limit `jedi` for now, until we can properly solve
1 parent 1fe39e1 commit 4dedbaf

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ description = "A library for making reactive notebooks and apps"
1212
dependencies = [
1313
# For maintainable cli
1414
"click>=8.0,<9",
15-
# code completion
16-
"jedi>=0.18.0",
15+
# code completion (upper bound applied temporarily for resolution)
16+
"jedi>=0.18.0,<0.20.0",
1717
# compile markdown to html
1818
"markdown>=3.6,<4",
1919
# add features to markdown

tests/snapshots/dependencies.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
click>=8.0,<9
22
docutils>=0.16.0
33
itsdangerous>=2.0.0
4-
jedi>=0.18.0
4+
jedi>=0.18.0,<0.20.0
55
loro>=1.10.0
66
markdown>=3.6,<4
77
msgspec>=0.20.0

0 commit comments

Comments
 (0)