Skip to content

Commit 227605c

Browse files
fix: remove pip upgrade and use --no-build-isolation
The build isolation subprocess only sees the internal feed (not PyPI), causing setuptools resolution to fail. Use --no-build-isolation to leverage the agent's pre-installed setuptools and remove the pip upgrade step which also fails against the feed. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent bab62ad commit 227605c

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

.azure-pipelines/daily-ci-build.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,7 @@ extends:
5353
inputs:
5454
artifactFeeds: microsoftgraph/GraphDeveloperExperiences_Public
5555

56-
- script: python -m pip install --upgrade pip
57-
displayName: Upgrade pip
58-
workingDirectory: $(Build.SourcesDirectory)
59-
60-
- script: pip install -e ".[dev]"
56+
- script: pip install -e ".[dev]" --no-build-isolation
6157
displayName: Install dependencies
6258
workingDirectory: $(Build.SourcesDirectory)
6359

0 commit comments

Comments
 (0)