We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b537f10 commit ea131c1Copy full SHA for ea131c1
1 file changed
.github/workflows/release-python.yml
@@ -14,13 +14,15 @@ jobs:
14
15
steps:
16
- uses: actions/checkout@v2
17
-
+ - name: Set up Python 3
18
+ uses: actions/setup-python@v2
19
+ with:
20
+ python-version: '3.x'
21
- name: Build package
22
run: |
23
python -m pip install --upgrade pip
- pip install -r requirements.txt
24
+ pip install -r requirements_dev.txt
25
python -m build
26
- name: Publish package to PyPI
27
uses: pypa/gh-action-pypi-publish@release/v1
28
with:
0 commit comments