Fix documentation package compatibility - #103
Merged
ChrisRackauckas merged 1 commit intoJul 30, 2026
Merged
Conversation
Keep the documentation environment on the same major and minor version line as the package, and test that invariant in the Core group. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com>
This was referenced Jul 30, 2026
Merged
ChrisRackauckas
marked this pull request as ready for review
July 30, 2026 09:50
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.
Important
Ignore this PR until it has been reviewed by @ChrisRackauckas.
Summary
0.1version line.pkgversion(PDEBase).This is independent of #102. The release PR can change
0.1.31to0.1.32without changing this documentation constraint.Root cause
On clean
upstream/masterat01a7e79, the reusable SciML documentation install command failed before the build:julia +release --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'The adjacent commit boundary identifies
97c9de5as the first bad commit:1cf0ae2, declaresPDEBaseversion0.2.0in both the package and documentation projects. The exact install command succeeds there.97c9de5changes the package version to0.1.31but leaves the documentation compat at0.2.Using
PDEBase = "0.1"keeps documentation compatible across patch releases and avoids another edit for the pending0.1.32release.Local verification
GROUP=Core: 88/88 passedGROUP=Core: 73/73 passedGROUP=QA: 20/20 passed.PDEBase v0.1.31.julia +release --project=docs/ --code-coverage=user docs/make.jlcompletes doctests, document checks, and HTML rendering with exit code 0. Local deployment is skipped because no CI deployment environment is present.--checkexits 0.As a control, the same Julia 1.10 Core command passes on clean
upstream/master; no additional clean-master test failure was found.