We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce7c219 commit f0ba057Copy full SHA for f0ba057
3 files changed
news/1 Enhancements/3855.md
@@ -0,0 +1 @@
1
+Upgrade `jedi` and `parso` to the latest versions (`0.13.2` and `0.3.1` respectively).
pythonFiles/completion.py
@@ -34,7 +34,7 @@ class JediCompletion(object):
34
35
def __init__(self):
36
self.default_sys_path = sys.path
37
- self.environment = jedi.api.environment.Environment(sys.prefix, sys.executable)
+ self.environment = jedi.api.environment.Environment(sys.executable)
38
self._input = io.open(sys.stdin.fileno(), encoding='utf-8')
39
if (os.path.sep == '/') and (platform.uname()[2].find('Microsoft') > -1):
40
# WSL; does not support UNC paths
requirements.txt
@@ -1,4 +1,4 @@
-jedi==0.12.0
2
-parso==0.2.1
+jedi==0.13.2
+parso==0.3.1
3
isort==4.3.4
4
ptvsd==4.2.0
0 commit comments