Skip to content

Commit

Permalink
Update: Use newer Poetry. (#456)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjones1 authored Jun 22, 2023
1 parent e432f81 commit 8fe70f9
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/major.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: true
matrix:
python-version: ['3.8', '3.9', '3.10','3.11']
poetry-version: ['1.4.2']
poetry-version: ['1.5.1']
os: [ubuntu-latest, windows-latest]

runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -56,11 +56,11 @@ jobs:
python-version: 3.8

# Setup poetry
- name: Install poetry 1.4.2
- name: Install poetry 1.5.1
run: |
python -m ensurepip
python -m pip install --upgrade pip
python -m pip install poetry==1.4.2
python -m pip install poetry==1.5.1
- name: Install dependencies
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/minor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: true
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
poetry-version: ['1.4.2']
poetry-version: ['1.5.1']
os: [ubuntu-latest, windows-latest]

runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -56,11 +56,11 @@ jobs:
python-version: 3.8

# Setup poetry
- name: Install poetry 1.4.2
- name: Install poetry 1.5.1
run: |
python -m ensurepip
python -m pip install --upgrade pip
python -m pip install poetry==1.4.2
python -m pip install poetry==1.5.1
- name: Install dependencies
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.8']
poetry-version: ['1.4.2']
poetry-version: ['1.5.1']
os: [ubuntu-latest]

runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -58,11 +58,11 @@ jobs:
python-version: 3.8

# Setup poetry
- name: Install poetry 1.4.2
- name: Install poetry 1.5.1
run: |
python -m ensurepip
python -m pip install --upgrade pip
python -m pip install poetry==1.4.2
python -m pip install poetry==1.5.1
- name: Install dependencies
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: true
matrix:
python-version: ['3.8', '3.9', '3.10','3.11']
poetry-version: ['1.4.2']
poetry-version: ['1.5.1']
os: [ubuntu-latest, windows-latest]

runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -56,11 +56,11 @@ jobs:
python-version: 3.8

# Setup poetry
- name: Install poetry 1.4.2
- name: Install poetry 1.5.1
run: |
python -m ensurepip
python -m pip install --upgrade pip
python -m pip install poetry==1.4.2
python -m pip install poetry==1.5.1
- name: Install dependencies
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
with:
python-version: "3.10"

- name: Install poetry 1.4.2
- name: Install poetry 1.5.1
run: |
python -m ensurepip
python -m pip install --upgrade pip
python -m pip install poetry==1.4.2
python -m pip install poetry==1.5.1
- name: Install dependencies
shell: bash
Expand All @@ -41,7 +41,7 @@ jobs:
fail-fast: true
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
poetry-version: ['1.4.2']
poetry-version: ['1.5.1']
os: [ubuntu-latest, windows-latest]
exclude:
- os: windows-latest
Expand Down

0 comments on commit 8fe70f9

Please sign in to comment.