Skip to content

Commit

Permalink
Trying to get poetry working
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed Feb 1, 2024
1 parent 734f0be commit f2a9d0f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/poetry-install-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,16 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: 'poetry'

- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.7.1
virtualenvs-create: true
virtualenvs-in-project: true

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry==1.7.1
poetry install --with dev
poetry install
- name: Display Python version
run: python -c "import sys; print(sys.version)"
Expand Down

0 comments on commit f2a9d0f

Please sign in to comment.