Skip to content

Commit 048ae9d

Browse files
authored
Upgrade pip in CI (#566)
See setuptools_csm issue
1 parent 0007fb9 commit 048ae9d

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ jobs:
5151
uses: actions/setup-python@v2
5252
with:
5353
python-version: ${{ matrix.python-version }}
54+
- name: Upgrade pip
55+
run: |
56+
python -m pip install --upgrade pip
57+
pip install --upgrade wheel setuptools build
5458
- name: Install
5559
run: pip install --disable-pip-version-check -e .[tests]
5660
- name: Test

.github/workflows/test_integration.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ jobs:
5353
uses: actions/setup-python@v2
5454
with:
5555
python-version: 3.8
56+
- name: Upgrade pip
57+
run: |
58+
python -m pip install --upgrade pip
59+
pip install --upgrade wheel setuptools build
5660
- name: Install
5761
run: pip install --disable-pip-version-check -e .[apm,tests]
5862
- name: Test

0 commit comments

Comments
 (0)