Skip to content

Commit

Permalink
fix: change from pip to poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
kraanzu committed Oct 18, 2023
1 parent a718d0e commit 58aaf12
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
python -m pip install --upgrade poetry
poetry install
pip install pyinstaller
- name: Package app with pyinstaller
run: |
Expand All @@ -46,8 +46,8 @@ jobs:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
python -m pip install --upgrade poetry
poetry install
pip install pyinstaller
- name: Package app with pyinstaller
run: |
Expand All @@ -69,8 +69,8 @@ jobs:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
python -m pip install --upgrade poetry
poetry install
pip install pyinstaller
- name: Package app with pyinstaller
run: |
Expand Down

0 comments on commit 58aaf12

Please sign in to comment.