Skip to content

Commit 93a238c

Browse files
committed
Upgrade pip and setuptools in workflow
Python 3.5 on GitHub Action ran into some certificate issue that newer version of pip doesn't have, so upgrading to the latest by default.
1 parent 53bea98 commit 93a238c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/tests.yml

+2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ jobs:
6262
- name: Install Python Deps
6363
if: steps.release.outputs.version == 0
6464
run: |
65+
pip install -U pip setuptools
6566
pip install -e .[test]
6667
6768
- name: Test
@@ -117,6 +118,7 @@ jobs:
117118
- name: Install Python Deps
118119
if: steps.release.outputs.version == 0
119120
run: |
121+
pip install -U pip setuptools
120122
pip install -e .[test]
121123
122124
- name: Test

0 commit comments

Comments
 (0)