Skip to content

Commit 0fe83f1

Browse files
committed
Reemove setting pythonPath
According to the announcement made by the vscode-python extension, it is not posible to use the pythonPath setting anymore. Therefore, it is necessary to make use of the API provided by the vscode-python extension microsoft/vscode-python#12596 Fix vscode-restructuredtext#222
1 parent 33a0775 commit 0fe83f1

File tree

5 files changed

+44
-5
lines changed

5 files changed

+44
-5
lines changed

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@
9191
"installTestPath": "./.rst/Server"
9292
}
9393
],
94+
"featureFlags": {
95+
"usingNewInterpreterStorage": true
96+
},
9497
"license": "SEE LICENSE IN LICENSE.txt",
9598
"homepage": "https://www.restructuredtext.net",
9699
"categories": [

src/features/utils/configuration.ts

+34-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
'use strict';
22

33
import {
4-
Uri, workspace, WorkspaceFolder,
4+
Uri, workspace, WorkspaceFolder, extensions, WorkspaceConfiguration
55
} from 'vscode';
66
import * as fs from 'fs';
77
import * as path from 'path';
8+
import { Constants } from "./constants";
89

910
export class Configuration {
1011

@@ -52,10 +53,40 @@ export class Configuration {
5253
return Configuration.loadAnySetting<string>('linter.run', 'onType', resource);
5354
}
5455

55-
public static getPythonPath(resource: Uri = null): string {
56+
public static async getPythonPath(resource: Uri = null): Promise<string> {
57+
try {
58+
const extension = extensions.getExtension("ms-python.python");
59+
if (!extension) {
60+
return Constants.python;
61+
}
62+
const usingNewInterpreterStorage = extension.packageJSON?.featureFlags?.usingNewInterpreterStorage;
63+
if (usingNewInterpreterStorage) {
64+
if (!extension.isActive) {
65+
await extension.activate();
66+
}
67+
const pythonPath = extension.exports.settings.getExecutionDetails(resource).execCommand[0];
68+
return pythonPath;
69+
} else {
70+
return this.getConfiguration("python", resource).get<string>("pythonPath");
71+
}
72+
} catch (error) {
73+
return Constants.python;
74+
}
75+
}
76+
77+
public static getConfiguration(section?: string, resource: Uri = null ): WorkspaceConfiguration {
78+
if (resource) {
79+
return workspace.getConfiguration(section, resource);
80+
} else {
81+
return workspace.getConfiguration(section);
82+
}
83+
}
84+
85+
public static getPythonPath2(resource: Uri = null): string {
5686
// IMPORTANT: python3 does not work, so the default comes from Python extension.
5787
const primary = Configuration.loadSetting('pythonPath', 'python3', resource, true, 'python');
58-
// assume pythonPath is relative to workspace root.
88+
// the user setting python.defaultInterpreterPath must be used to invoke the interpreter from the
89+
// VSCode internal storage
5990
if (primary) {
6091
const workspaceRoot = Configuration.GetRootPath(resource);
6192
if (workspaceRoot) {

src/features/utils/constants.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
"use strict";
2+
3+
export class Constants {
4+
public static readonly python = "python";
5+
}

src/python.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export class Python {
2626
}
2727

2828
public async checkPython(resource: vscode.Uri, showInformation: boolean = true): Promise<boolean> {
29-
const path = Configuration.getPythonPath(resource);
29+
const path = await Configuration.getPythonPath(resource);
3030
if (path) {
3131
this.pythonPath = `"${path}"`;
3232
if (await this.getVersion()) {

src/rstEngine.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export class RSTEngine {
6262

6363
let build = Configuration.getSphinxPath(uri);
6464
if (build == null) {
65-
const python = Configuration.getPythonPath(uri);
65+
const python = await Configuration.getPythonPath(uri);
6666
if (python) {
6767
build = '"' + python + '" -m sphinx';
6868
}

0 commit comments

Comments
 (0)