File tree Expand file tree Collapse file tree 4 files changed +26
-8
lines changed
Expand file tree Collapse file tree 4 files changed +26
-8
lines changed Original file line number Diff line number Diff line change 1+ name : Spell Check
2+
3+ on : [pull_request]
4+
5+ jobs :
6+ typos-check :
7+ name : Spell Check with Typos
8+ runs-on : ubuntu-latest
9+ steps :
10+ - name : Checkout Actions Repository
11+ uses : actions/checkout@v4
12+ - name : Check spelling
13+ uses : crate-ci/typos@master
Original file line number Diff line number Diff line change 11name = " MRIFieldmaps"
22uuid = " 5af58b90-8a55-4daf-adb4-2008a66a38cf"
33authors = [
" Jeff Fessler <[email protected] > and others" ]
4- version = " 0.0.3 "
4+ version = " 0.0.4 "
55
66[deps ]
77ImageGeoms = " 9ee76f2b-840d-4475-b6d6-e485c9297852"
@@ -11,7 +11,7 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1111StatsBase = " 2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1212
1313[compat ]
14- ImageGeoms = " 0.10"
14+ ImageGeoms = " 0.10, 0.11 "
1515LimitedLDLFactorizations = " 0.5"
1616StatsBase = " 0.33, 0.34"
17- julia = " v1.9 "
17+ julia = " v1.10 "
Original file line number Diff line number Diff line change 1+ [default ]
2+ extend-ignore-identifiers-re = [
3+ " nd" ,
4+ " numer" ,
5+ ]
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ execute = isempty(ARGS) || ARGS[1] == "run"
22
33org, reps = :MagneticResonanceImaging, :MRIFieldmaps
44eval(:(using $ reps))
5- using Documenter
6- using Literate
5+ import Documenter
6+ import Literate
77
88# https://juliadocs.github.io/Documenter.jl/stable/man/syntax/#@example-block
99ENV [" GKSwstype" ] = " 100"
@@ -23,7 +23,7 @@ binder_root_url =
2323
2424
2525repo = eval(:($ reps))
26- DocMeta. setdocmeta!(repo, :DocTestSetup, :(using $ reps); recursive= true )
26+ Documenter . DocMeta. setdocmeta!(repo, :DocTestSetup, :(using $ reps); recursive= true )
2727
2828# preprocessing
2929inc1 = " include(\" ../../../inc/reproduce.jl\" )"
@@ -77,7 +77,7 @@ format = Documenter.HTML(;
7777 assets = [" assets/custom.css" ],
7878)
7979
80- makedocs(;
80+ Documenter . makedocs(;
8181 modules = [repo],
8282 authors = " Jeff Fessler and contributors" ,
8383 sitename = " $repo .jl" ,
@@ -90,7 +90,7 @@ makedocs(;
9090)
9191
9292if isci
93- deploydocs(;
93+ Documenter . deploydocs(;
9494 repo = " github.com/$base " ,
9595 devbranch = " main" ,
9696 devurl = " dev" ,
You can’t perform that action at this time.
0 commit comments