Skip to content

Commit f47f14a

Browse files
committed
Updated github actions to use poetry to install dependencies instead of a requirements file.
1 parent 7ae2767 commit f47f14a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip
23-
pip install -r requirements.txt
23+
pip install poetry==1.0.2
24+
poetry install
2425
- name: Lint with flake8
2526
run: |
2627
pip install flake8

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install Poetry
2121
run: |
2222
python -m pip install --upgrade pip
23-
pip install poetry
23+
pip install poetry==1.0.2
2424
poetry install
2525
- name: Poetry - Set Version & Build
2626
run: |

0 commit comments

Comments
 (0)