Python in VS Code May 2020 update addresses 42 issues

Share

The latest update for the VS Code Python extension has landed. As always, the update was announced in a blog post by Luciana de Melo e Abud, Program Manager of the Python extension in Visual Studio Code, in which she went into detail on the new features.

SEE ALSO: Python Developer Survey: 84% use Python as main language

In the May 2020 update, 42 issues have been addressed. Let’s take a look.

New and experimental features

The Python extension now includes the option to search for a Python interpreter in the file system. An interpreter can also be set manually, as demonstrated in a gif:

As an upcoming change, the currently used Python interpreter path python.pythonPath, which is stored in the workspace settings, will be deprecated. The reason for this is to prevent sharing the interpreter path and make the interpreter information system agnostic.

Here’s how to opt into the change early before it rolls out to all users: go to View > Command Palette… and run Preferences: Open Settings (JSON) to add the following line to the user settings:

"python.experiments.optInto": ["DeprecatePythonPath - experiment"]

Afterwards, reload the window using View > Command Palette… and run Developer: Reload Window.

The Python extension continues to run with A/B testing, so you may already be part of the experiment. To find out, see the first lines in the Python extension output channel. Microsoft provides the option to opt out of the testing program by setting python.experiments.enabled to false in the user settings.json file.

SEE ALSO: “Julia is comparable to Python for simple machine learning tasks and better for complex ones”

Additionally, the May 2020 release updates Jedi to version 0.17 and fixes several bugs. For example, a fix has been added for opening the interactive window when no workspace is open.

For more info, see the blog post and the changelog on GitHub.

The post Python in VS Code May 2020 update addresses 42 issues appeared first on JAXenter.

Source : JAXenter