Skip to content

Commit 2c6b99a

Browse files
authored
Updated ptvsd debugger to version v5.0.0a10. (microsoft#9311)
1 parent 2d4b1b2 commit 2c6b99a

5 files changed

Lines changed: 5 additions & 4 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.0a9'
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.0a10'
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.0a9'
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.0a10'
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
@@ -283,7 +283,7 @@ gulp.task('installNewPtvsd', async () => {
283283
}
284284

285285
// Install source only version of new PTVSD for use with all other python versions.
286-
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']
286+
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.0a10']
287287
const successWithoutWheels = await spawnAsync(process.env.CI_PYTHON_PATH || 'python3', args)
288288
.then(() => true)
289289
.catch(ex => {

news/1 Enhancements/9310.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.0a10.

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.0a9"
11+
DEBUGGER_VERSION = "5.0.0a10"
1212
DEBUGGER_PYTHON_VERSIONS = ("cp37",)
1313

1414

0 commit comments

Comments
 (0)