Skip to content

Commit 71766e3

Browse files
authored
Upgrade debugpy to 1.6.4 (#20291)
Also ship CPython 3.10 wheels instead of 3.9.
1 parent 4ee6050 commit 71766e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pythonFiles/install_debugpy.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
EXTENSION_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
1313
DEBUGGER_DEST = os.path.join(EXTENSION_ROOT, "pythonFiles", "lib", "python")
1414
DEBUGGER_PACKAGE = "debugpy"
15-
DEBUGGER_PYTHON_ABI_VERSIONS = ("cp39",)
16-
DEBUGGER_VERSION = "1.6.3" # can also be "latest"
15+
DEBUGGER_PYTHON_ABI_VERSIONS = ("cp310",)
16+
DEBUGGER_VERSION = "1.6.4" # can also be "latest"
1717

1818

1919
def _contains(s, parts=()):
20-
return any(p for p in parts if p in s)
20+
return any(p in s for p in parts)
2121

2222

2323
def _get_package_data():

0 commit comments

Comments
 (0)