Skip to content

Commit fedd59d

Browse files
authored
Merge branch 'main' into file-comms-4
2 parents 4d11b2b + aae2b63 commit fedd59d

File tree

32 files changed

+662
-239
lines changed

32 files changed

+662
-239
lines changed

.github/workflows/build.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: 18.17.1
12+
NODE_VERSION: 20.18.0
1313
PYTHON_VERSION: '3.10' # YML treats 3.10 the number as 3.1, so quotes around 3.10
1414
# Force a path with spaces and to test extension works in these scenarios
1515
# Unicode characters are causing 2.7 failures so skip that for now.

.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: 18.17.1
11+
NODE_VERSION: 20.18.0
1212
PYTHON_VERSION: '3.10' # YML treats 3.10 the number as 3.1, so quotes around 3.10
1313
MOCHA_REPORTER_JUNIT: true # Use the mocha-multi-reporters and send output to both console (spec) and JUnit (mocha-junit-reporter). Also enables a reporter which exits the process running the tests if it haven't already.
1414
ARTIFACT_NAME_VSIX: ms-python-insiders-vsix

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v18.17.1
1+
v20.18.0

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: '18.17.1'
69+
versionSpec: '20.18.0'
7070
displayName: Select Node version
7171

7272
- task: UsePythonVersion@0

build/azure-pipeline.stable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ extends:
6161
buildSteps:
6262
- task: NodeTool@0
6363
inputs:
64-
versionSpec: '18.17.1'
64+
versionSpec: '20.18.0'
6565
displayName: Select Node version
6666

6767
- task: UsePythonVersion@0
@@ -103,7 +103,7 @@ extends:
103103
project: 'Monaco'
104104
definition: 593
105105
buildVersionToDownload: 'latestFromBranch'
106-
branchName: 'refs/heads/release/2024.14'
106+
branchName: 'refs/heads/release/2024.18'
107107
targetPath: '$(Build.SourcesDirectory)/python-env-tools/bin'
108108
artifactName: 'bin-$(vsceTarget)'
109109
itemPattern: |

build/azure-pipelines/pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ extends:
3737
testPlatforms:
3838
- name: Linux
3939
nodeVersions:
40-
- 18.17.1
40+
- 20.18.0
4141
- name: MacOS
4242
nodeVersions:
43-
- 18.17.1
43+
- 20.18.0
4444
- name: Windows
4545
nodeVersions:
46-
- 18.17.1
46+
- 20.18.0
4747
testSteps:
4848
- template: /build/azure-pipelines/templates/test-steps.yml@self
4949
parameters:

build/test-requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,6 @@ django-stubs
3131
# for coverage
3232
coverage
3333
pytest-cov
34+
35+
# for pytest-describe related tests
36+
pytest-describe

package-lock.json

Lines changed: 9 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "python",
33
"displayName": "Python",
44
"description": "Python language support with extension access points for IntelliSense (Pylance), Debugging (Python Debugger), linting, formatting, refactoring, unit tests, and more.",
5-
"version": "2024.17.0-dev",
5+
"version": "2024.19.0-dev",
66
"featureFlags": {
77
"usingNewInterpreterStorage": true
88
},
@@ -24,7 +24,6 @@
2424
"quickPickItemTooltip",
2525
"terminalDataWriteEvent",
2626
"terminalExecuteCommandEvent",
27-
"contribIssueReporter",
2827
"codeActionAI",
2928
"notebookReplDocument",
3029
"notebookVariableProvider"
@@ -592,8 +591,8 @@
592591
"native"
593592
],
594593
"tags": [
595-
"experimental",
596-
"onExP"
594+
"onExP",
595+
"preview"
597596
],
598597
"scope": "machine",
599598
"type": "string"
@@ -675,8 +674,8 @@
675674
"scope": "resource",
676675
"type": "boolean",
677676
"tags": [
678-
"experimental",
679-
"onExP"
677+
"onExP",
678+
"preview"
680679
]
681680
},
682681
"python.REPL.provideVariables": {
@@ -1175,12 +1174,12 @@
11751174
{
11761175
"command": "python.execInREPLEnter",
11771176
"key": "enter",
1178-
"when": "!config.interactiveWindow.executeWithShiftEnter && activeEditor == 'workbench.editor.repl' && !inlineChatFocused"
1177+
"when": "!config.interactiveWindow.executeWithShiftEnter && activeEditor == 'workbench.editor.repl' && !inlineChatFocused && !notebookCellListFocused"
11791178
},
11801179
{
11811180
"command": "python.execInInteractiveWindowEnter",
11821181
"key": "enter",
1183-
"when": "!config.interactiveWindow.executeWithShiftEnter && activeEditor == 'workbench.editor.interactive' && !inlineChatFocused"
1182+
"when": "!config.interactiveWindow.executeWithShiftEnter && activeEditor == 'workbench.editor.interactive' && !inlineChatFocused && !notebookCellListFocused"
11841183
},
11851184
{
11861185
"command": "python.refreshTensorBoard",

pythonExtensionApi/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)