Skip to content
This repository was archived by the owner on Jun 7, 2021. It is now read-only.

Commit 70ff6ed

Browse files
committed
Update workflows.
1 parent 690a5da commit 70ff6ed

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip
31-
pip install -r requirements.txt
31+
python -m pip install -r requirements.txt
3232
- name: Lint with flake8
3333
run: |
3434
pip install flake8

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ jobs:
2525
release_name: Release ${{ env.RELEASE_VERSION }}
2626
draft: false
2727
prerelease: false
28+
- name: Install dependencies
29+
run: |
30+
python -m pip install --upgrade pip
31+
python -m pip install twine wheel
2832
- name: Publish to PyPI
2933
run: |
3034
./package.sh

0 commit comments

Comments
 (0)