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 77587ac commit 14a02f9Copy full SHA for 14a02f9
.github/workflows/python-package.yml
@@ -54,10 +54,13 @@ jobs:
54
uses: actions/setup-python@v3
55
with:
56
python-version: '3.x'
57
+ - name: Install Poetry
58
+ run: |
59
+ curl -sSL https://install.python-poetry.org | python3 -
60
+ export PATH="$HOME/.local/bin:$PATH"
61
- name: Install dependencies
62
run: |
- python -m pip install --upgrade pip
- pip install -r requirements.txt
63
+ poetry install
64
- name: Build package
65
run: python setup.py sdist bdist_wheel
66
- name: Publish package
0 commit comments