Skip to content

Commit ea131c1

Browse files
committed
Fixing release workflow
1 parent b537f10 commit ea131c1

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/release-python.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,15 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v2
17-
17+
- name: Set up Python 3
18+
uses: actions/setup-python@v2
19+
with:
20+
python-version: '3.x'
1821
- name: Build package
1922
run: |
2023
python -m pip install --upgrade pip
21-
pip install -r requirements.txt
24+
pip install -r requirements_dev.txt
2225
python -m build
23-
2426
- name: Publish package to PyPI
2527
uses: pypa/gh-action-pypi-publish@release/v1
2628
with:

0 commit comments

Comments
 (0)