Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0d9b5ca

Browse files
committedApr 10, 2024
pip fix
1 parent 16945e5 commit 0d9b5ca

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed
 

‎.github/workflows/ci_consumption_workflow.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
python-version: ${{ matrix.python-version }}
3333
- name: Install dependencies
3434
run: |
35+
python -m pip install --upgrade pip==23.0
3536
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple -U azure-functions --pre
3637
python -m pip install -U -e .[dev]
3738
if [[ "${{ matrix.python-version }}" != "3.7" ]]; then

‎.github/workflows/ci_e2e_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
done
5959
}
6060
61-
python -m pip install --upgrade pip
61+
python -m pip install --upgrade pip==23.0
6262
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple -U azure-functions --pre
6363
python -m pip install -U -e .[dev]
6464
if [[ "${{ matrix.python-version }}" != "3.7" ]]; then

‎.github/workflows/ci_ut_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
done
5757
}
5858
59-
python -m pip install --upgrade pip
59+
python -m pip install --upgrade pip==23.0
6060
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple -U azure-functions --pre
6161
python -m pip install -U -e .[dev]
6262
if [[ "${{ matrix.python-version }}" != "3.7" ]]; then

0 commit comments

Comments
 (0)
Please sign in to comment.