Skip to content

Commit d500b58

Browse files
authored
Upgrade setuptools in Actions
1 parent abb2946 commit d500b58

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/build.yml

+4
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ jobs:
3030
python -m pip install --upgrade pip
3131
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3232
33+
- name: Update setuptools
34+
run: |
35+
python -m pip install --upgrade setuptools
36+
3337
- name: Install library
3438
run: pip install .
3539

.github/workflows/release.yml

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
uses: actions/setup-python@v1
1919
with:
2020
python-version: '3.x'
21+
- name: Update setuptools
22+
run: |
23+
python -m pip install --upgrade setuptools
2124
- name: Install dependencies
2225
if: contains(steps.need-pypi.outputs.pyproject-toml, 'pyproject.toml')
2326
run: |

0 commit comments

Comments
 (0)