mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-15 10:38:31 +02:00
use prerelease poetry for prerelease python
This commit is contained in:
parent
403ebc36fd
commit
be5e4954ea
1 changed files with 8 additions and 1 deletions
9
.github/workflows/testing.yaml
vendored
9
.github/workflows/testing.yaml
vendored
|
@ -46,8 +46,15 @@ jobs:
|
||||||
key: ${{ runner.os }}-${{ hashFiles('poetry.lock') }}-${{ matrix.python-version }}-v2
|
key: ${{ runner.os }}-${{ hashFiles('poetry.lock') }}-${{ matrix.python-version }}-v2
|
||||||
|
|
||||||
- name: Install dependencies
|
- 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: |
|
run: |
|
||||||
pip install poetry
|
|
||||||
poetry config --local virtualenvs.in-project true
|
poetry config --local virtualenvs.in-project true
|
||||||
poetry install --remove-untracked
|
poetry install --remove-untracked
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue