Skip to content

Commit b30caa2

Browse files
committed
use pip by default
1 parent 959f8c4 commit b30caa2

File tree

3 files changed

+1
-9
lines changed

3 files changed

+1
-9
lines changed

build/azure-devdiv-pipeline.pre-release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@ extends:
8282

8383
- script: python -m nox --session install_bundled_libs
8484
displayName: Install Python dependencies
85-
env:
86-
USE_PIP_DOWNLOAD: 1
8785

8886
- script: python ./build/update_ext_version.py --for-publishing
8987
displayName: Update build number

build/azure-devdiv-pipeline.stable.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,6 @@ extends:
7575

7676
- script: python -m nox --session install_bundled_libs
7777
displayName: Install Python dependencies
78-
env:
79-
USE_PIP_DOWNLOAD: 1
8078

8179
- script: python ./build/update_ext_version.py --release --for-publishing
8280
displayName: Update build number

noxfile.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,7 @@ def install_bundled_libs(session):
7575
else:
7676
wheels = debugpy_info["any"]
7777

78-
# Use pip download when USE_PIP_DOWNLOAD is set (e.g., for Azure Artifacts feed)
79-
if os.environ.get("USE_PIP_DOWNLOAD"):
80-
download_debugpy_via_pip(session, wheels)
81-
else:
82-
download_url(wheels)
78+
download_debugpy_via_pip(session, wheels)
8379

8480

8581
def _parse_wheel_info(url: str) -> dict:

0 commit comments

Comments
 (0)