File tree Expand file tree Collapse file tree 12 files changed +16
-23
lines changed
scripts/repo_health_status_report
tools/azure-sdk-tools/ci_tools/versioning Expand file tree Collapse file tree 12 files changed +16
-23
lines changed Original file line number Diff line number Diff line change 11# requirements leveraged by ci tools
2- setuptools==69 .2.0; python_version >= '3.5'
2+ setuptools==72 .2.0
33virtualenv==20.25.1
44wheel==0.43.0
55packaging==23.1
Original file line number Diff line number Diff line change 88typing_extensions>=3.7.2
99cryptography
1010adal
11- setuptools==69 .2.0; python_version >= '3.5'
11+ setuptools==72 .2.0
1212pytest-asyncio==0.12.0
1313-e sdk/core/azure-core/tests/testserver_tests/coretestserver
1414azure-mgmt-storage
Original file line number Diff line number Diff line change 88
99 variables :
1010 skipComponentGovernanceDetection : true
11-
11+
1212 timeoutInMinutes : 120
1313
1414 pool :
2121 versionSpec : ' $(PythonVersion)'
2222
2323 - script : |
24- python -m pip install setuptools==58.3.0
2524 python -m pip install -r eng/ci_tools.txt
2625 displayName: 'Prep Environment'
2726
3534
3635 - task : PublishPipelineArtifact@0
3736 inputs :
38- artifactName : ' documentation'
37+ artifactName : ' documentation'
3938 targetPath : ' $(Build.SourcesDirectory)/_docs'
Original file line number Diff line number Diff line change @@ -18,11 +18,11 @@ jobs:
1818 - template : /eng/pipelines/templates/steps/use-python-version.yml
1919 parameters :
2020 versionSpec : $(PythonVersion)
21-
21+
2222 - script : |
2323 python -m pip freeze
2424 python -m pip --version
25- python -m pip install setuptools==58.3 .0 wheel==0.37.0 tox==4.5.0 packaging==23.1 requests
25+ python -m pip install setuptools==72.2 .0 wheel==0.37.0 tox==4.5.0 packaging==23.1 requests
2626 python -m pip install $(Build.SourcesDirectory)/tools/azure-sdk-tools[build]
2727 displayName: Install Dependencies
2828
6767 sudo apt-get install build-essential -y
6868 python -m pip freeze
6969 python -m pip --version
70- python -m pip install setuptools==58.3 .0 wheel==0.37.0 tox==4.5.0 packaging==23.1 requests
70+ python -m pip install setuptools==72.2 .0 wheel==0.37.0 tox==4.5.0 packaging==23.1 requests
7171 python -m pip install $(Build.SourcesDirectory)/tools/azure-sdk-tools[build]
7272 displayName: Install Dependencies
7373
@@ -130,7 +130,7 @@ jobs:
130130 export PATH=~/.local/bin:$PATH
131131 curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
132132 python3 get-pip.py
133- python3 -m pip install setuptools==67.6 .0 wheel
133+ python3 -m pip install setuptools==72.2 .0 wheel
134134 python3 -m pip install tox packaging twine beautifulsoup4
135135 python3 --version
136136 cd $(Build.SourcesDirectory)
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ extends:
3838 inputs :
3939 versionSpec : ' 3.8'
4040 - script : |
41- python -m pip install setuptools==58.3.0
4241 python -m pip install -r eng/ci_tools.txt
4342 displayName: 'Prep Environment'
4443 - task : PythonScript@0
@@ -100,7 +99,6 @@ extends:
10099 versionSpec : ' 3.11'
101100
102101 - script : |
103- python -m pip install setuptools==58.3.0
104102 python -m pip install -r eng/ci_tools.txt
105103 displayName: 'Prep Environment'
106104
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ stages:
2222
2323 variables :
2424 - name : PythonVersion
25- value : ' 3.8'
25+ value : ' 3.8'
2626
2727 pool :
2828 name : $(LINUXPOOL)
@@ -35,7 +35,6 @@ stages:
3535 inputs :
3636 versionSpec : ' 3.8'
3737 - script : |
38- python -m pip install setuptools==58.3.0
3938 python -m pip install -r eng/ci_tools.txt
4039 displayName: 'Prep Environment'
4140 - task : PythonScript@0
@@ -97,7 +96,6 @@ stages:
9796 versionSpec : ' 3.11'
9897
9998 - script : |
100- python -m pip install setuptools==58.3.0
10199 python -m pip install -r eng/ci_tools.txt
102100 displayName: 'Prep Environment'
103101
@@ -108,7 +106,7 @@ stages:
108106 scriptPath : ' scripts/devops_tasks/dispatch_tox.py'
109107 arguments : >-
110108 ${{ parameters.BuildTargetingString }}
111- --service="${{ parameters.ServiceDirectory }}"
109+ --service="${{ parameters.ServiceDirectory }}"
112110 --toxenv="sphinx"
113111 env :
114112 GH_TOKEN : $(azuresdk-github-pat)
Original file line number Diff line number Diff line change 99 versionSpec : ' $(PythonVersion)'
1010
1111 - pwsh : |
12- python -m pip install setuptools==58.3.0
1312 python -m pip install -r eng/ci_tools.txt
1413 displayName: 'Install Python Tools'
1514 condition: succeededOrFailed()
Original file line number Diff line number Diff line change 4545 - template : /eng/pipelines/templates/steps/use-venv.yml
4646
4747 - script : |
48- python -m pip install setuptools==58.3.0
4948 python -m pip install -r eng/ci_tools.txt
5049 displayName: 'Prep Environment'
5150
Original file line number Diff line number Diff line change 3232 $packages = Get-ChildItem "$(Pipeline.Workspace)/${{ parameters.ArtifactName }}/${{ parameters.Artifact.name }}/*.tar.gz"
3333 Write-Host "Artifacts found:"
3434 $artifacts = $packages | ForEach-Object {
35- if ($_.Name -match "([a-zA-Z\-]+)\-(.*).tar.gz") {
35+ if ($_.Name -match "([a-zA-Z\-_ ]+)\-(.*).tar.gz") {
3636 Write-Host "$($matches[1]): $($matches[2])"
37- return @{ "name" = $matches[1]; "version" = $matches[2] }
37+ return @{ "name" = $matches[1].ToString().Replace("_", "-") ; "version" = $matches[2] }
3838 }
3939 }
4040 if ($artifacts.name -notcontains "${{parameters.Artifact.name}}") {
5858 displayName: Override requirements with pipeline build artifact versions
5959
6060 # Retry for pip install due to delay in package availability after publish
61- # The package is expected to be available for download/installation within 10 minutes
61+ # The package is expected to be available for download/installation within 10 minutes
6262 - pwsh : |
6363 $ErrorActionPreference = "Continue"
6464 while ($retries++ -lt 15) {
Original file line number Diff line number Diff line change 11# requirements leveraged by ci tools
2- setuptools==69 .2.0; python_version >= '3.5'
2+ setuptools==72 .2.0
33virtualenv==20.23.0
44wheel==0.43.0
55Jinja2==3.1.2
You can’t perform that action at this time.
0 commit comments