-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove comments, lock poetry to specific version
- Loading branch information
Will Wernert
committed
Jan 18, 2023
1 parent
66a5fe4
commit 052fcf8
Showing
1 changed file
with
1 addition
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,24 +29,10 @@ jobs: | |
|
||
- name: Install and configure Poetry | ||
run: | | ||
pipx install poetry | ||
pipx install poetry==1.3.2 | ||
poetry config virtualenvs.create true | ||
poetry config virtualenvs.in-project false | ||
poetry config installer.parallel true | ||
# uses: snok/[email protected] | ||
# with: | ||
# version: 1.3.2 | ||
# virtualenvs-create: true | ||
# virtualenvs-in-project: false | ||
# installer-parallel: true | ||
|
||
# This should be handled by the cache option for `actions/setup-python@v4` | ||
# - name: Load cached venv | ||
# id: cached-poetry-dependencies | ||
# uses: actions/cache@v3 | ||
# with: | ||
# path: .venv | ||
# key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} | ||
- name: Install Python | ||
uses: actions/setup-python@v4 | ||
|