Skip to content

Commit

Permalink
Installing poetry from apt
Browse files Browse the repository at this point in the history
  • Loading branch information
lotif committed Oct 16, 2024
1 parent 8ee5253 commit 2db2b6c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: Install dependencies, build docs and coverage report
run: python3 -m pip install --upgrade pip && python3 -m pip install poetry
run: sudo apt install python3-poetry
- uses: actions/[email protected]
with:
python-version: '3.9'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
submodules: 'true'
- name: Install dependencies, build docs and coverage report
run: python3 -m pip install --upgrade pip && python3 -m pip install poetry
run: sudo apt install python3-poetry
- uses: actions/[email protected]
with:
python-version: '3.9'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: Install poetry
run: python3 -m pip install --upgrade pip && python3 -m pip install poetry
run: sudo apt install python3-poetry
- uses: actions/[email protected]
with:
python-version: '3.9'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
sudo apt-get install libcurl4-openssl-dev libssl-dev
- uses: actions/[email protected]
- name: Install poetry
run: python3 -m pip install --upgrade pip && python3 -m pip install poetry
run: sudo apt install python3-poetry
- uses: actions/[email protected]
with:
python-version: '3.9'
Expand Down

0 comments on commit 2db2b6c

Please sign in to comment.