Skip to content

Commit aa697c2

Browse files
committed
Use poetry to install dependencies
1 parent 6d82646 commit aa697c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip
31-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
32-
if [ -f requirements-to-build.txt ]; then pip install -r requirements-to-build.txt; fi
31+
python -m pip install poetry
32+
poetry install
3333
# Linting is done in the run_linters.sh script
3434

3535
- name: Prep tests

0 commit comments

Comments
 (0)