Skip to content

Commit c3b0667

Browse files
authored
Standardize yml; compat ImageGeoms v0.11; to v0.0.4 (#31)
* Standardize yml * Add _typos
1 parent 44fce6a commit c3b0667

File tree

4 files changed

+26
-8
lines changed

4 files changed

+26
-8
lines changed

.github/workflows/SpellCheck.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "MRIFieldmaps"
22
uuid = "5af58b90-8a55-4daf-adb4-2008a66a38cf"
33
authors = ["Jeff Fessler <[email protected]> and others"]
4-
version = "0.0.3"
4+
version = "0.0.4"
55

66
[deps]
77
ImageGeoms = "9ee76f2b-840d-4475-b6d6-e485c9297852"
@@ -11,7 +11,7 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1111
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1212

1313
[compat]
14-
ImageGeoms = "0.10"
14+
ImageGeoms = "0.10, 0.11"
1515
LimitedLDLFactorizations = "0.5"
1616
StatsBase = "0.33, 0.34"
17-
julia = "v1.9"
17+
julia = "v1.10"

_typos.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[default]
2+
extend-ignore-identifiers-re = [
3+
"nd",
4+
"numer",
5+
]

docs/make.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ execute = isempty(ARGS) || ARGS[1] == "run"
22

33
org, reps = :MagneticResonanceImaging, :MRIFieldmaps
44
eval(:(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
99
ENV["GKSwstype"] = "100"
@@ -23,7 +23,7 @@ binder_root_url =
2323

2424

2525
repo = eval(:($reps))
26-
DocMeta.setdocmeta!(repo, :DocTestSetup, :(using $reps); recursive=true)
26+
Documenter.DocMeta.setdocmeta!(repo, :DocTestSetup, :(using $reps); recursive=true)
2727

2828
# preprocessing
2929
inc1 = "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

9292
if isci
93-
deploydocs(;
93+
Documenter.deploydocs(;
9494
repo = "github.com/$base",
9595
devbranch = "main",
9696
devurl = "dev",

0 commit comments

Comments
 (0)