From 1cafe2823ccb470c4fc2fd500091fc213be48344 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas Date: Sun, 28 Dec 2025 20:59:49 -0500 Subject: [PATCH] Fix CI: typo and pin Julia to 1.11 for compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix typo "uknowns" -> "unknowns" in docs/src/lectures/lecture1.md - Pin Julia version to 1.11 in Documentation.yml workflow The Julia 1.12 release has compatibility issues with upstream packages (OrdinaryDiffEq, PreallocationTools) that cause documentation build failures. Pinning to 1.11 until these are resolved. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/Documentation.yml | 2 +- docs/src/lectures/lecture1.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Documentation.yml b/.github/workflows/Documentation.yml index ebe23c7..f9508fb 100644 --- a/.github/workflows/Documentation.yml +++ b/.github/workflows/Documentation.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@latest with: - version: '1' + version: '1.11' # Pinned due to Julia 1.12 compatibility issues in upstream packages - name: Install dependencies run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' - name: Build and deploy diff --git a/docs/src/lectures/lecture1.md b/docs/src/lectures/lecture1.md index c66b5d4..0b361e8 100644 --- a/docs/src/lectures/lecture1.md +++ b/docs/src/lectures/lecture1.md @@ -560,7 +560,7 @@ end ![mass-spring-damper](../img/System2.png) -Solving the system gives a plot of the 2 solved uknowns. +Solving the system gives a plot of the 2 solved unknowns. ```@example l1 prob = ODEProblem(sys, [], (0, 10))