Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 367caa5

Browse files
authored
Update debugpy to 1.6.2 (microsoft#19424)
1 parent 5ec4d5d commit 367caa5

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44

55
### Enhancements
66

7-
- Add `breakpoint` support for `django-html` & `django-txt` by Lakshmikanth2001 in https://github.com/microsoft/vscode-python/pull/19288
7+
- Add `breakpoint` support for `django-html` & `django-txt` by [Lakshmikanth2001](https://github.com/Lakshmikanth2001) in ([#19288](https://github.com/microsoft/vscode-python/pull/19288)).
88
- Fix `unittest` discovery issue with experimental component by [ksy7588](https://github.com/ksy7588) in ([#19324](https://github.com/microsoft/vscode-python/pull/19324)).
99
- Trigger refresh when using `Select Interpreter` command if no envs were found previously by [karrtikr](https://github.com/karrtikr) in ([#19361](https://github.com/microsoft/vscode-python/pull/19361)).
10+
- Update `debugpy` to 1.6.2.
1011

1112
### Bug Fixes
1213

pythonFiles/install_debugpy.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
1+
# Copyright (c) Microsoft Corporation. All rights reserved.
2+
# Licensed under the MIT License.
3+
14
import io
25
import json
36
import os
47
import urllib.request as url_lib
58
import zipfile
6-
from packaging.version import parse as version_parser
79

10+
from packaging.version import parse as version_parser
811

912
EXTENSION_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
1013
DEBUGGER_DEST = os.path.join(EXTENSION_ROOT, "pythonFiles", "lib", "python")
1114
DEBUGGER_PACKAGE = "debugpy"
1215
DEBUGGER_PYTHON_ABI_VERSIONS = ("cp39",)
13-
DEBUGGER_VERSION = "1.6.0" # can also be "latest"
16+
DEBUGGER_VERSION = "1.6.2" # can also be "latest"
1417

1518

1619
def _contains(s, parts=()):

0 commit comments

Comments
 (0)