Skip to content

Commit 528fed4

Browse files
committed
Add setuptools and wheel installation to Python package workflow
1 parent a2800ff commit 528fed4

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip
25+
python -m pip install setuptools wheel
2526
python -m pip install flake8 pytest
2627
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
2728
@@ -48,6 +49,7 @@ jobs:
4849
- name: Install dependencies
4950
run: |
5051
python -m pip install --upgrade pip
52+
python -m pip install setuptools wheel
5153
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
5254
5355
- name: Install wheel & twine

0 commit comments

Comments
 (0)