Skip to content

Commit 77587ac

Browse files
committed
build: install dependencies through requirements.txt instead of setup.py
1 parent c226d40 commit 77587ac

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,10 @@ jobs:
5454
uses: actions/setup-python@v3
5555
with:
5656
python-version: '3.x'
57-
- name: Install build dependencies
58-
run: python -m pip install --upgrade pip setuptools wheel
57+
- name: Install dependencies
58+
run: |
59+
python -m pip install --upgrade pip
60+
pip install -r requirements.txt
5961
- name: Build package
6062
run: python setup.py sdist bdist_wheel
6163
- name: Publish package

0 commit comments

Comments
 (0)