Skip to content

Commit

Permalink
Fix ms-python.python build (#736)
Browse files Browse the repository at this point in the history
  • Loading branch information
apollo13 authored Jan 8, 2024
1 parent c2adce8 commit aa9a32c
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,18 @@
},
"ms-python.python": {
"repository": "https://github.com/microsoft/vscode-python",
"prepublish": "npx gulp installPythonLibs && python3 -m pip --disable-pip-version-check install packaging && python3 ./pythonFiles/install_debugpy.py && python3 ./pythonFiles/download_get_pip.py && python3 ./build/update_ext_version.py --release --for-publishing && npm run addExtensionPackDependencies && DISABLE_TRANSLATIONS=true npm run package",
"custom": [
"python -m pip install -U pip",
"python -m pip install wheel",
"python -m pip install --no-deps --require-hashes --only-binary :all: -t ./pythonFiles/lib/python --implementation py -r requirements.txt",
"python -m pip --disable-pip-version-check install packaging",
"python ./pythonFiles/install_debugpy.py",
"python ./pythonFiles/download_get_pip.py",
"python -m pip install --no-deps --require-hashes --only-binary :all: -t ./pythonFiles/lib/jedilsp --implementation py --platform any --abi none -r ./pythonFiles/jedilsp_requirements/requirements.txt",
"npm ci --prefer-offline",
"npm run addExtensionPackDependencies",
"npm run package"
],
"extensionFile": "ms-python-insiders.vsix",
"pythonVersion": "3.8",
"timeout": 30
Expand Down

0 comments on commit aa9a32c

Please sign in to comment.