Skip to content

Commit 2084a51

Browse files
committed
Added setuptools to workflow
1 parent 9a94f9d commit 2084a51

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/run-golden-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
python-version: ${{ env.PYTHON_VERSION }}
1818
- name: Install dependencies and package
1919
run: |
20+
python -m pip install --upgrade pip setuptools wheel
2021
pip install -r requirements.txt
2122
python setup.py install
2223
- name: Run tests

.github/workflows/run-unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
python-version: ${{ env.PYTHON_VERSION }}
1818
- name: install dependencies
1919
run: |
20-
python -m pip install --upgrade pip
20+
python -m pip install --upgrade pip setuptools wheel
2121
pip install -r requirements.txt
2222
pip install -r requirements-dev.txt
2323
pip install pytest

0 commit comments

Comments
 (0)