Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
branches: ['main']

env:
PYTHON_VERSION: '3.13.1'
POETRY_VERSION: '2.0.0'
PYTHON_VERSION: '3.13.9'
POETRY_VERSION: '2.2.1'
LINT_PATHS: >
api
project
Expand Down Expand Up @@ -36,13 +36,13 @@ jobs:
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install poetry
run: pipx install poetry==${{ env.POETRY_VERSION }}

- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: poetry
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/pycqa/isort
rev: 5.13.2
rev: 7.0.0
hooks:
- id: isort
name: isort (python)
args: [--settings-file=pyproject.toml]
- repo: https://github.com/psf/black
rev: 24.10.0
rev: 25.9.0
hooks:
- id: black # Configure in pyproject.toml
- repo: local
Expand All @@ -24,7 +24,7 @@ repos:
types: [python]
args: [pylint, -v, --rcfile=.pylintrc]
- repo: https://github.com/pycqa/flake8
rev: 7.1.1
rev: 7.3.0
hooks:
- id: flake8
args: [--config=.flake8]
Expand Down
Loading