Skip to content

Commit d4869cf

Browse files
committed
Merge branch 'vscode-python-issue-25609-scrollable-repl' of https://github.com/hutch3232/vscode-python into vscode-python-issue-25609-scrollable-repl
2 parents a7bd46c + b49c1d6 commit d4869cf

22 files changed

Lines changed: 28553 additions & 195 deletions

.github/workflows/pr-file-check.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ on:
99
- 'labeled'
1010
- 'unlabeled'
1111

12-
permissions: {}
12+
permissions:
13+
pull-requests: read
1314

1415
jobs:
1516
changed-files-in-pr:
@@ -19,6 +20,7 @@ jobs:
1920
- name: 'package-lock.json matches package.json'
2021
uses: brettcannon/check-for-changed-files@d85c64d17b3c1d0ac57c9cc46ea39399b0d6fa71 # v1.2.2
2122
with:
23+
token: ${{ github.token }}
2224
prereq-pattern: 'package.json'
2325
file-pattern: 'package-lock.json'
2426
skip-label: 'skip package*.json'
@@ -27,6 +29,7 @@ jobs:
2729
- name: 'package.json matches package-lock.json'
2830
uses: brettcannon/check-for-changed-files@d85c64d17b3c1d0ac57c9cc46ea39399b0d6fa71 # v1.2.2
2931
with:
32+
token: ${{ github.token }}
3033
prereq-pattern: 'package-lock.json'
3134
file-pattern: 'package.json'
3235
skip-label: 'skip package*.json'
@@ -35,6 +38,7 @@ jobs:
3538
- name: 'Tests'
3639
uses: brettcannon/check-for-changed-files@d85c64d17b3c1d0ac57c9cc46ea39399b0d6fa71 # v1.2.2
3740
with:
41+
token: ${{ github.token }}
3842
prereq-pattern: src/**/*.ts
3943
file-pattern: |
4044
src/**/*.test.ts

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ cucumber-report.json
2424
port.txt
2525
precommit.hook
2626
python_files/lib/**
27-
python_files/get-pip.py
2827
debug_coverage*/**
2928
languageServer/**
3029
languageServer.*/**

.vscodeignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ out/test/**
6363
out/testMultiRootWkspc/**
6464
precommit.hook
6565
python_files/**/*.pyc
66+
python_files/download_get_pip.py
6667
python_files/lib/**/*.egg-info/**
6768
python_files/lib/jedilsp/bin/**
6869
python_files/lib/python/bin/**

build/azure-pipeline.pre-release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ extends:
8787
architecture: 'x64'
8888
displayName: Select Python version
8989

90+
- task: PipAuthenticate@1
91+
inputs:
92+
artifactFeeds: 'Monaco/vscode'
93+
displayName: Authenticate to vscode feed
94+
9095
- script: python -m pip install -U pip
9196
displayName: Upgrade pip
9297

@@ -97,7 +102,7 @@ extends:
97102
displayName: Install NPM dependencies
98103

99104
- script: nox --session install_python_libs
100-
displayName: Install Jedi, get-pip, etc
105+
displayName: Install Python extension dependencies
101106

102107
- script: python ./build/update_package_file.py
103108
displayName: Update telemetry in package.json

build/azure-pipeline.stable.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,11 @@ extends:
8181
architecture: 'x64'
8282
displayName: Select Python version
8383

84+
- task: PipAuthenticate@1
85+
inputs:
86+
artifactFeeds: 'Monaco/vscode'
87+
displayName: Authenticate to vscode feed
88+
8489
- script: python -m pip install -U pip
8590
displayName: Upgrade pip
8691

@@ -91,7 +96,7 @@ extends:
9196
displayName: Install NPM dependencies
9297

9398
- script: nox --session install_python_libs
94-
displayName: Install Jedi, get-pip, etc
99+
displayName: Install Python extension dependencies
95100

96101
- script: python ./build/update_package_file.py
97102
displayName: Update telemetry in package.json

build/build-install-requirements.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

cgmanifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"Component": {
55
"Other": {
66
"Name": "get-pip",
7-
"Version": "21.3.1",
7+
"Version": "26.2.1",
88
"DownloadUrl": "https://github.com/pypa/get-pip"
99
},
1010
"Type": "other"

noxfile.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,6 @@ def install_python_libs(session: nox.Session):
5555
session.install("packaging")
5656
session.install("debugpy")
5757

58-
# Download get-pip script
59-
session.run(
60-
"python",
61-
"./python_files/download_get_pip.py",
62-
env={"PYTHONPATH": "./python_files/lib/temp"},
63-
)
64-
6558
if pathlib.Path("./python_files/lib/temp").exists():
6659
shutil.rmtree("./python_files/lib/temp")
6760

0 commit comments

Comments
 (0)