Skip to content

Commit

Permalink
temporarily add pip uninstall on old requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
pbalcer committed Nov 6, 2024
1 parent e9cd3da commit 850eda1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/benchmarks-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ jobs:
path: ur-repo

- name: Install pip packages
run: pip install -r ${{github.workspace}}/ur-repo/third_party/requirements.txt
run: |
pip uninstall six -y
pip install -r third_party/requirements.txt
# We need to fetch special ref for proper PR's merge commit. Note, this ref may be absent if the PR is already merged.
- name: Fetch PR's merge commit
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build-hw-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ jobs:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Install pip packages
run: pip install -r third_party/requirements.txt
run: |
pip uninstall six -y
pip install -r third_party/requirements.txt
- name: Download DPC++
run: |
Expand Down

0 comments on commit 850eda1

Please sign in to comment.