Skip to content

Commit 011501f

Browse files
committed
install setuptools for pypi publication
1 parent 61ff041 commit 011501f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/pypi-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
python-version: '3.x'
2626
- name: Install dependencies
2727
run: |
28-
python -m pip install --upgrade pip; pip install twine wheel;
28+
python -m pip install --upgrade pip; pip install setuptools twine wheel;
2929
pip install .
3030
- name: Building package
3131
run: python setup.py sdist bdist_wheel

.github/workflows/tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
pip install ".[test]"
26+
pip install setuptools wheel
27+
pip install ".[test]"
2728
- name: Test with pytest
2829
run: |
2930
pytest

0 commit comments

Comments
 (0)