From 644d98943c34409aca85145671d6f3155b5fbd18 Mon Sep 17 00:00:00 2001 From: Karthik Nadig Date: Thu, 9 Jan 2020 13:48:42 -0800 Subject: [PATCH] Update debugger to 5.0.0a11 --- build/ci/templates/steps/build.yml | 2 +- build/ci/templates/test_phases.yml | 2 +- gulpfile.js | 2 +- news/2 Fixes/9474.md | 1 + pythonFiles/install_ptvsd.py | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 news/2 Fixes/9474.md diff --git a/build/ci/templates/steps/build.yml b/build/ci/templates/steps/build.yml index 0ed9a411dd31..b4ea23db1c0b 100644 --- a/build/ci/templates/steps/build.yml +++ b/build/ci/templates/steps/build.yml @@ -22,7 +22,7 @@ steps: python -m pip install -U pip python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/python --no-cache-dir --implementation py --no-deps --upgrade -r requirements.txt 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' - 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' + 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.0a11' failOnStderr: true displayName: "pip install requirements" diff --git a/build/ci/templates/test_phases.yml b/build/ci/templates/test_phases.yml index 81a758b36835..64b65fd6ad4c 100644 --- a/build/ci/templates/test_phases.yml +++ b/build/ci/templates/test_phases.yml @@ -97,7 +97,7 @@ steps: python -m pip install --upgrade -r build/test-requirements.txt python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/python --no-cache-dir --implementation py --no-deps --upgrade -r requirements.txt 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' - 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' + 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.0a11' displayName: 'pip install system test requirements' condition: and(succeeded(), eq(variables['NeedsPythonTestReqs'], 'true')) diff --git a/gulpfile.js b/gulpfile.js index eb953ef7ce0e..33be58a25562 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -286,7 +286,7 @@ gulp.task('installNewPtvsd', async () => { } // Install source only version of new PTVSD for use with all other python versions. - 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'] + 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.0a11'] const successWithoutWheels = await spawnAsync(process.env.CI_PYTHON_PATH || 'python3', args) .then(() => true) .catch(ex => { diff --git a/news/2 Fixes/9474.md b/news/2 Fixes/9474.md new file mode 100644 index 000000000000..a2274d06a6fc --- /dev/null +++ b/news/2 Fixes/9474.md @@ -0,0 +1 @@ +Update `ptvsd` debugger to version v5.0.0a11. Fixes signing for `inject_dll_x86.exe`. diff --git a/pythonFiles/install_ptvsd.py b/pythonFiles/install_ptvsd.py index ac82aba3e4b0..8fcff1947f74 100644 --- a/pythonFiles/install_ptvsd.py +++ b/pythonFiles/install_ptvsd.py @@ -8,7 +8,7 @@ EXTENSION_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) DEBUGGER_DEST = os.path.join(EXTENSION_ROOT, "pythonFiles", "lib", "python", "new_ptvsd", "wheels") DEBUGGER_PACKAGE = "ptvsd" -DEBUGGER_VERSION = "5.0.0a10" +DEBUGGER_VERSION = "5.0.0a11" DEBUGGER_PYTHON_VERSIONS = ("cp37",)