Skip to content

Commit 84b253b

Browse files
authored
Merge branch 'main' into copilot/fix-483
2 parents d354864 + 9ecfd3c commit 84b253b

File tree

8 files changed

+9
-10
lines changed

8 files changed

+9
-10
lines changed

.github/workflows/pr-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- release*
99

1010
env:
11-
NODE_VERSION: '20.18.0'
11+
NODE_VERSION: '20.18.1'
1212

1313
jobs:
1414
build-vsix:

.github/workflows/push-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- 'release-*'
1010

1111
env:
12-
NODE_VERSION: '20.18.0'
12+
NODE_VERSION: '20.18.1'
1313

1414
jobs:
1515
build-vsix:

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.18.0
1+
20.18.1

build/azure-pipeline.pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ extends:
6666
buildSteps:
6767
- task: NodeTool@0
6868
inputs:
69-
versionSpec: '20.18.0'
69+
versionSpec: '20.18.1'
7070
displayName: Select Node version
7171

7272
- task: UsePythonVersion@0

build/azure-pipeline.stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ extends:
5656
buildSteps:
5757
- task: NodeTool@0
5858
inputs:
59-
versionSpec: '20.18.0'
59+
versionSpec: '20.18.1'
6060
displayName: Select Node version
6161

6262
- task: UsePythonVersion@0

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Requirements
22

3-
1. `node` >= 20.18.0
3+
1. `node` >= 20.18.1
44
2. `npm` >= 10.9.0
55
3. `yo` >= 5.0.0 (installed via `npm install -g yo`)
66
4. `generator-code` >= 1.11.4 (installed via `npm install -g generator-code`)

src/common/localize.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ export namespace PackageManagement {
3636
export const enterPackageNames = l10n.t('Enter package names');
3737
export const searchCommonPackages = l10n.t('Search common `PyPI` packages');
3838
export const searchCommonPackagesDescription = l10n.t('Search and Install common `PyPI` packages');
39-
export const workspaceDependencies = l10n.t('Install workspace dependencies');
40-
export const workspaceDependenciesDescription = l10n.t('Install dependencies found in the current workspace.');
39+
export const workspaceDependencies = l10n.t('Install project dependencies');
40+
export const workspaceDependenciesDescription = l10n.t('Install packages found in dependency files.');
4141
export const selectPackagesToUninstall = l10n.t('Select packages to uninstall');
4242
export const enterPackagesPlaceHolder = l10n.t('Enter package names separated by space');
4343
export const editArguments = l10n.t('Edit arguments');

src/managers/poetry/poetryManager.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as path from 'path';
2-
import { Disposable, EventEmitter, MarkdownString, ProgressLocation, ThemeIcon, Uri } from 'vscode';
2+
import { Disposable, EventEmitter, MarkdownString, ProgressLocation, Uri } from 'vscode';
33
import {
44
DidChangeEnvironmentEventArgs,
55
DidChangeEnvironmentsEventArgs,
@@ -49,7 +49,6 @@ export class PoetryManager implements EnvironmentManager, Disposable {
4949
this.displayName = 'Poetry';
5050
this.preferredPackageManagerId = 'ms-python.python:poetry';
5151
this.tooltip = new MarkdownString(PoetryStrings.poetryManager, true);
52-
this.iconPath = new ThemeIcon('python');
5352
}
5453

5554
name: string;

0 commit comments

Comments
 (0)