Skip to content

Commit 14a02f9

Browse files
committed
build: install dependencies with poetry
1 parent 77587ac commit 14a02f9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,13 @@ jobs:
5454
uses: actions/setup-python@v3
5555
with:
5656
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"
5761
- name: Install dependencies
5862
run: |
59-
python -m pip install --upgrade pip
60-
pip install -r requirements.txt
63+
poetry install
6164
- name: Build package
6265
run: python setup.py sdist bdist_wheel
6366
- name: Publish package

0 commit comments

Comments
 (0)