Conversation
Three commits have touched src/ since v26.3 on 2026-08-28: addon support on floating-label fields, week/search/color inputs recognised as form controls, and the BOOTSTRAP5 system check. The test dependency group listed coverage[toml]>=7.6.1 twice. The duplicate is dropped and the group sorted alphabetically, matching the docs group next to it. Resolution does not change, only the lockfile's version of this package. Entries are reordered to the convention in MAINTAINING.md: the missing inline_field_class default first as a fix, then the three features, then tooling, then documentation. Verified with just lint and just build: check-manifest clean, pyroma 10/10, and both the wheel and the sdist smoke-test against an isolated environment. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Two changes propagated from django-marina, both in ci.yml, so they travel together rather than as two rounds of review. Python 3.15.0rc2 runs as a non-blocking matrix job against Django 6.1 and main. No Django release claims 3.15 yet, so pairing it with 5.2 or 6.0 would park permanent red legs that say nothing about this package. uv sync now pins the interpreter with --python, because uv skips pre-release interpreters when it resolves by discovery and the 3.15 leg would otherwise test on whatever else the runner had. The tests job is the only required status check on main, and it only failed on the test matrix. docs and build feed nothing, so a failure in either left the matrix green and the gate green with it: a broken docs build or a failing packaging preflight could be merged. It now reads every job it needs. always() stays because a job skipped after a failed need reports success to branch protection, which is GitHub's documented behaviour and the reason the condition is spelled out. MAINTAINING.md names Pillow as the C-extension dependency that gates making a pre-release job blocking. Pillow 12.3.0 already publishes cp315 wheels, so that gate is open whenever 3.15 goes final. The bullet stays as policy rather than recording today's state, which would go stale. The GDAL install steps and the jinja extra stay where they are, as PACKAGING.md requires for this package. Apart from those, ci.yml and tox.ini are now byte-identical to django-marina. Verified: py315-6.1 and py315-main pass here on 3.15.0rc2, 172 tests. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Coverage Report for CI Build 35582349385Coverage remained the same at 96.208%Details
Uncovered ChangesNo uncovered changes found. Coverage RegressionsNo coverage regressions found. Coverage Stats
💛 - Coveralls |
This branch has not been deployed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Stacked on #877. It branches from
release-26.4so its changelog entries land in a freshUnreleasedsection rather than inside the released one. Merge #877 first and this reduces to the four files below.Two changes propagated from django-marina (#681 and #682), both landing in
ci.yml, so they travel as one review rather than two.Python 3.15. 3.15.0rc2 is installable through uv, so the matrix reports on it well before the October release. The legs run with
continue-on-errorand cannot fail the build. No Django release claims 3.15 yet, 5.2, 6.0 and 6.1 all stop their classifiers at 3.14, so it pairs with 6.1 andmainonly.uv syncnow pins the interpreter with--python, because uv skips pre-release interpreters when resolving by discovery, and that flag applies to every leg, so it is the line to look at hardest. Classifiers inpyproject.tomlstay at 3.14: a classifier is a promise and a job that cannot fail the build does not back one. MAINTAINING.md records that rule.The CI gate.
testsis the only required status check onmainand it only failed on the test matrix.docsandbuildfeed nothing, so a failure in either left the matrix green and the gate green with it, meaning a broken docs build or a failing packaging preflight could be merged. It now reads every job it needs. Theif: always()stays, because a job skipped after a failed need reports success to branch protection, so dropping it would reintroduce the hole through the front door.Worth knowing for this package specifically: MAINTAINING.md names Pillow as the C-extension dependency that gates making a pre-release job blocking, and Pillow 12.3.0 already publishes cp315 wheels. That gate is open whenever 3.15 goes final. The bullet stays as policy rather than recording today's state, which would go stale.
The GDAL install steps and the
jinjaextra stay where they are, as PACKAGING.md requires here. Apart from those,ci.ymlandtox.iniare byte-identical to django-marina after this.Verified locally:
py315-6.1andpy315-mainpass here on 3.15.0rc2, 172 tests.🤖 Generated with Claude Code