Skip to content

Commit

Permalink
use prerelease poetry for prerelease python
Browse files Browse the repository at this point in the history
  • Loading branch information
wren committed Jul 3, 2021
1 parent 403ebc3 commit be5e495
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,15 @@ jobs:
key: ${{ runner.os }}-${{ hashFiles('poetry.lock') }}-${{ matrix.python-version }}-v2

- name: Install dependencies
if: ${{ matrix.python-version != 3.10-dev }}
run: pip install poetry

- name: Install dependencies (Prerelease)
if: ${{ matrix.python-version == 3.10-dev }}
run: pip install poetry==1.2.0a1

- name: Configure poetry
run: |
pip install poetry
poetry config --local virtualenvs.in-project true
poetry install --remove-untracked
Expand Down

0 comments on commit be5e495

Please sign in to comment.