Skip to content

Commit 83f0361

Browse files
authored
Update ptvsd to v5.0.0a9 (microsoft#8932)
1 parent d1c117d commit 83f0361

6 files changed

Lines changed: 5 additions & 5 deletions

File tree

build/ci/templates/steps/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ steps:
2222
python -m pip install -U pip
2323
python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/python --no-cache-dir --implementation py --no-deps --upgrade -r requirements.txt
2424
python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/python/old_ptvsd --no-cache-dir --implementation py --no-deps --upgrade 'ptvsd==4.3.2'
25-
python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/python/new_ptvsd/no_wheels --no-cache-dir --implementation py --no-deps --upgrade 'ptvsd==5.0.0a8'
25+
python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/python/new_ptvsd/no_wheels --no-cache-dir --implementation py --no-deps --upgrade 'ptvsd==5.0.0a9'
2626
failOnStderr: true
2727
displayName: "pip install requirements"
2828

build/ci/templates/test_phases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ steps:
9797
python -m pip install --upgrade -r build/test-requirements.txt
9898
python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/python --no-cache-dir --implementation py --no-deps --upgrade -r requirements.txt
9999
python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/python/old_ptvsd --no-cache-dir --implementation py --no-deps --upgrade 'ptvsd==4.3.2'
100-
python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/python/new_ptvsd/no_wheels --no-cache-dir --implementation py --no-deps --upgrade 'ptvsd==5.0.0a8'
100+
python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/python/new_ptvsd/no_wheels --no-cache-dir --implementation py --no-deps --upgrade 'ptvsd==5.0.0a9'
101101
displayName: 'pip install system test requirements'
102102
condition: and(succeeded(), eq(variables['NeedsPythonTestReqs'], 'true'))
103103

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ gulp.task('installNewPtvsd', async () => {
273273
}
274274

275275
// Install source only version of new PTVSD for use with all other python versions.
276-
const args = ['-m', 'pip', '--disable-pip-version-check', 'install', '-t', './pythonFiles/lib/python/new_ptvsd/no_wheels', '--no-cache-dir', '--implementation', 'py', '--no-deps', '--upgrade', 'ptvsd==5.0.0a8']
276+
const args = ['-m', 'pip', '--disable-pip-version-check', 'install', '-t', './pythonFiles/lib/python/new_ptvsd/no_wheels', '--no-cache-dir', '--implementation', 'py', '--no-deps', '--upgrade', 'ptvsd==5.0.0a9']
277277
const successWithoutWheels = await spawnAsync(process.env.CI_PYTHON_PATH || 'python3', args)
278278
.then(() => true)
279279
.catch(ex => {

news/1 Enhancements/8725.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/1 Enhancements/8930.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Updated `ptvsd` debugger to version v5.0.0a9.

pythonFiles/install_ptvsd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
EXTENSION_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
99
DEBUGGER_DEST = os.path.join(EXTENSION_ROOT, "pythonFiles", "lib", "python", "new_ptvsd", "wheels")
1010
DEBUGGER_PACKAGE = "ptvsd"
11-
DEBUGGER_VERSION = "5.0.0a8"
11+
DEBUGGER_VERSION = "5.0.0a9"
1212
DEBUGGER_PYTHON_VERSIONS = ("cp37",)
1313

1414

0 commit comments

Comments
 (0)