Skip to content

Commit f1d48f3

Browse files
committed
Fix CI
1 parent 07cf648 commit f1d48f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Build packages
5252
run: |
5353
python -m venv .venv
54-
.venv/bin/pip install wheel -r requirements.txt
54+
.venv/bin/pip install wheel setuptools -r requirements.txt
5555
sed -i "s/\(version='[0-9]*\.[0-9]*\.[0-9]*\)\('\)/\1.dev$(date +%Y%m%d%H%M%S)\2/g" setup.py
5656
sed -i "s/5 - Production\/Stable/4 - Beta/g" setup.py
5757
.venv/bin/python setup.py clean check sdist bdist_wheel
@@ -74,7 +74,7 @@ jobs:
7474
- name: Build packages
7575
run: |
7676
python -m venv .venv
77-
.venv/bin/pip install wheel -r requirements.txt
77+
.venv/bin/pip install wheel setuptools -r requirements.txt
7878
.venv/bin/python setup.py clean check sdist bdist_wheel
7979
- name: Upload to PyPI
8080
uses: pypa/[email protected]

0 commit comments

Comments
 (0)