Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
itssimon committed Oct 27, 2023
1 parent e873f2e commit ea2a5b2
Show file tree
Hide file tree
Showing 5 changed files with 329 additions and 228 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: "1.5.1"
version: "1.6.1"
virtualenvs-in-project: true
- name: Install dynamic versioning plugin for Poetry
run: poetry self add "poetry-dynamic-versioning[plugin]"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
if: steps.cached-poetry.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
with:
version: "1.5.1"
version: "1.6.1"
virtualenvs-in-project: true
- uses: actions/setup-python@v4
with:
Expand All @@ -51,7 +51,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
deps:
- starlette
- fastapi starlette
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
if: steps.cached-poetry.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
with:
version: "1.5.1"
version: "1.6.1"
virtualenvs-in-project: true
- name: Build Python package wheel
run: poetry build -f wheel
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@ default_language_version:
python: "3.11"
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
- id: mixed-line-ending
- repo: https://github.com/psf/black
rev: "23.3.0"
rev: "23.10.1"
hooks:
- id: black
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.0.275
rev: v0.1.3
hooks:
- id: ruff
args: ["--fix", "--exit-non-zero-on-fix"]
- repo: https://github.com/python-poetry/poetry
rev: "1.5.1"
rev: "1.6.1"
hooks:
- id: poetry-check
- id: poetry-lock
Expand Down
Loading

0 comments on commit ea2a5b2

Please sign in to comment.