Skip to content

Commit 0d8927f

Browse files
authored
Additional python 3.13 and 3.14 support (#940)
* Additional python 3.13 and 3.14 support - remove debugpy_info.json for DEBUGPY_VERSION in noxfile.py * ruff format -- --fix .
1 parent a6ee0a8 commit 0d8927f

File tree

4 files changed

+133
-199
lines changed

4 files changed

+133
-199
lines changed

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
},
2323
"git.branchProtection": ["main"],
2424
"git.branchRandomName.enable": true,
25-
"python-envs.defaultEnvManager": "ms-python.python:system",
25+
"python-envs.defaultEnvManager": "ms-python.python:venv",
2626
"python-envs.pythonProjects": []
2727
}

build/update_ext_version.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,7 @@ def main(package_json: pathlib.Path, argv: Sequence[str]) -> None:
8282
if args.build_id:
8383
# If build id is provided it should fall within the 0-INT32 max range
8484
# that the max allowed value for publishing to the Marketplace.
85-
if args.build_id < 0 or (
86-
args.for_publishing and args.build_id > ((2**32) - 1)
87-
):
85+
if args.build_id < 0 or (args.for_publishing and args.build_id > ((2**32) - 1)):
8886
raise ValueError(f"Build ID must be within [0, {(2**32) - 1}]")
8987

9088
package["version"] = ".".join((major, minor, str(args.build_id)))

debugpy_info.json

Lines changed: 0 additions & 70 deletions
This file was deleted.

0 commit comments

Comments
 (0)