Skip to content

Commit 4f20b5d

Browse files
committed
Merge branch 'master' of https://github.com/SciML/Catalyst.jl into graph-docs
uncap MTK
2 parents 5918d90 + b7d8c61 commit 4f20b5d

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed

.github/workflows/DocsCleanup.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Doc Preview Cleanup
2+
3+
on:
4+
pull_request:
5+
types: [closed]
6+
7+
# Ensure that only one "Doc Preview Cleanup" workflow is force pushing at a time
8+
concurrency:
9+
group: doc-preview-cleanup
10+
cancel-in-progress: false
11+
12+
jobs:
13+
doc-preview-cleanup:
14+
runs-on: ubuntu-latest
15+
permissions:
16+
contents: write
17+
steps:
18+
- name: Checkout gh-pages branch
19+
uses: actions/checkout@v4
20+
with:
21+
ref: gh-pages
22+
- name: Delete preview and history + push changes
23+
run: |
24+
if [ -d "${preview_dir}" ]; then
25+
git config user.name "Documenter.jl"
26+
git config user.email "[email protected]"
27+
git rm -rf "${preview_dir}"
28+
git commit -m "delete preview"
29+
git branch gh-pages-new $(echo "delete history" | git commit-tree HEAD^{tree})
30+
git push --force origin gh-pages-new:gh-pages
31+
fi
32+
env:
33+
preview_dir: previews/PR${{ github.event.number }}

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ RuntimeGeneratedFunctions = "0.5.12"
6767
SciMLBase = "2.57.2"
6868
Setfield = "1"
6969
# StructuralIdentifiability = "0.5.8"
70-
SymbolicUtils = "2.1.2, 3.3.0"
70+
SymbolicUtils = "< 3.8"
7171
Symbolics = "6.22"
7272
Unitful = "1.12.4"
7373
julia = "1.10"

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ IncompleteLU = "0.2"
6262
JumpProcesses = "9.13.2"
6363
Latexify = "0.16.5"
6464
LinearSolve = "2.30"
65-
ModelingToolkit = "9.32"
65+
ModelingToolkit = "< 9.60"
6666
NonlinearSolve = "3.12, 4"
6767
Optim = "1.9"
6868
Optimization = "4"

0 commit comments

Comments
 (0)