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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry==1.8.3 # Make sure this matches POETRY_VERSION in the Dockerfile
run: pipx install poetry==1.8.5 # Make sure this matches POETRY_VERSION in the Dockerfile
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
9 changes: 8 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ default_language_version:
python: python3.13
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.9.1' # keep in sync with pyproject.toml
rev: 'v0.11.2' # keep in sync with pyproject.toml
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand Down Expand Up @@ -42,3 +42,10 @@ repos:
rev: 3.0.6
hooks:
- id: djhtml
- repo: https://github.com/python-poetry/poetry
rev: '1.8.5' # keep version in sync with version installed in the Dockerfile
hooks:
- id: poetry-lock
# Never update dependencies and only run on changes to pyproject.toml
args: [--no-update]
files: ^pyproject.toml$
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ FROM python:3.13 as production
ARG POETRY_INSTALL_ARGS="--no-dev"

# IMPORTANT: Remember to review both of these when upgrading
ARG POETRY_VERSION=1.8.3
ARG POETRY_VERSION=1.8.5

# Install dependencies in a virtualenv
ENV VIRTUAL_ENV=/venv
Expand Down
17 changes: 14 additions & 3 deletions docs/upgrading.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,18 @@ As much as possible, we want to use the official releases available on PyPI for

### Check these packages for updates

(This list may not be exhaustive)
**Last checked** Wagtail 6.4 upgrade

- [lite youtube](front-end/lite-youtube.md)
- [wagtail markdown](front-end/markdown-codehilite.md)
- wagtail-accessibility
- [wagtail-lite-youtube-embed](front-end/lite-youtube.md)
- [wagtail-markdown](front-end/markdown-codehilite.md)
- wagtailmedia
- wagtail-purge

## Custom wagtail admin templates

**Last checked** Wagtail 6.4 upgrade

Wagtail core is expected to see an update to prevent the preview panel from scroll at every content update. To prevent this from happening until then, fix has been applied to the `tbx/project_styleguide/templates/patterns/base.html` template.

Further information is available in a MR for Wagtail Kit: https://git.torchbox.com/internal/wagtail-kit/-/merge_requests/973
Loading