Skip to content

Commit 2c0bd74

Browse files
CopilotLoopedBard3DrewScoggins
authored
Fix upload failure due to missing 'six' module dependency (#5017)
* Initial plan * Add missing 'six' module dependency for azure.storage.blob Co-authored-by: LoopedBard3 <[email protected]> * Update --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: LoopedBard3 <[email protected]> Co-authored-by: Drew Scoggins <[email protected]>
1 parent 6165845 commit 2c0bd74

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

docs/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ The documentation in this repo is organized into the following sections:
3030
- [Testing GC.Infrastructure](../src/benchmarks/gc/GC.Infrastructure/README.md) - Information on testing GC.Infrastructure.
3131
- [GC.Analysis.API](../src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API/README.md) - Information on conducting GC, CPU and Threading analysis using .NET Interactive notebooks.
3232
- [GC.Infrastructure Notebooks](../src/benchmarks/gc/GC.Infrastructure/Notebooks/README.md) - Information on notebooks that either provide examples or functionality for specialized analysis
33-
- [Benchmark Analysis](../src/benchmarks/gc/GC.Infrastructure/Notebooks/BenchmarkAnalysis.md) - Information on a notebook which contains code for producing charts (and soon, tables) for GC benchmarks. It can currently process data
34-
from the ASP.NET benchmarks obtained using crank as well as ETL data.
33+
- [Benchmark Analysis](../src/benchmarks/gc/GC.Infrastructure/Notebooks/BenchmarkAnalysis.md) - Information on a notebook which contains code for producing charts (and soon, tables) for GC benchmarks. It can currently process data from the ASP.NET benchmarks obtained using crank as well as ETL data.
3534

3635
## Running Scenarios
3736

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ azure.identity==1.16.1
44
gitpython<=3.1.41
55
urllib3==1.26.19
66
opentelemetry-api==1.23.0
7-
opentelemetry-sdk==1.23.0
7+
opentelemetry-sdk==1.23.0
8+
six==1.17.0

scripts/run_performance_job.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@ def get_pre_commands(
171171
f"python -m pip install urllib3==1.26.19",
172172
f"python -m pip install opentelemetry-api==1.23.0",
173173
f"python -m pip install opentelemetry-sdk==1.23.0",
174+
f"python -m pip install six==1.17.0",
174175
]
175176

176177
# Install prereqs for NodeJS https://github.com/dotnet/runtime/pull/40667

0 commit comments

Comments
 (0)