Skip to content

Commit 79ecb26

Browse files
authored
Merge pull request #806 from valory-xyz/fix/release-workflow
fix: prepare pipenv with setuptools for releasing
2 parents 38f3868 + defc522 commit 79ecb26

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,12 @@ jobs:
2424
sudo apt-get autoremove
2525
sudo apt-get autoclean
2626
python -m pip install --upgrade pip
27-
pip install setuptools pipenv twine
27+
pip install pipenv twine
28+
29+
- name: Setup pipenv and install build dependencies
30+
run: |
31+
pipenv install --dev --skip-lock
32+
pipenv run pip install setuptools wheel
2833
2934
- name: Build wheels and source tarball
3035
run: |

0 commit comments

Comments
 (0)