Skip to content

Commit

Permalink
Update dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
drhagen committed Mar 3, 2024
1 parent 8a6f319 commit 199e3e7
Show file tree
Hide file tree
Showing 4 changed files with 493 additions and 531 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

env:
python-version: "3.9"
poetry-version: "1.6.1"
poetry-version: "1.7.1"

jobs:
test:
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Install Poetry
run: pipx install poetry==${{ env.poetry-version }}
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Test with nox
run: poetry run nox -s test-${{ matrix.python-version }}
- name: Store coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage
path: .coverage.*
Expand All @@ -44,14 +44,14 @@ jobs:
- name: Install Poetry
run: pipx install poetry==${{ env.poetry-version }}
- name: Install Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ env.python-version }}
cache: poetry
- name: Install environment
run: poetry install
- name: Fetch coverage
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage
- name: Combine coverage and generate report
Expand All @@ -68,7 +68,7 @@ jobs:
- name: Install Poetry
run: pipx install poetry==${{ env.poetry-version }}
- name: Install Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ env.python-version }}
cache: poetry
Expand All @@ -83,7 +83,7 @@ jobs:
- name: Install Poetry
run: pipx install poetry==${{ env.poetry-version }}
- name: Install Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ env.python-version }}
- name: Validate Poetry configuration and lockfile freshness
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

env:
python-version: "3.9"
poetry-version: "1.6.1"
poetry-version: "1.7.1"

jobs:
pypi-publish:
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Install Poetry
run: pipx install poetry==${{ env.poetry-version }}
- name: Install Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ env.python-version }}
- name: Build release with Poetry
Expand Down
Loading

0 comments on commit 199e3e7

Please sign in to comment.