Skip to content

Commit

Permalink
Merge pull request #121 from gaelforget/updates_20240318
Browse files Browse the repository at this point in the history
CI updates
  • Loading branch information
gaelforget authored Mar 18, 2024
2 parents 0eb7ece + 6699d5b commit 762933f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.7' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
- '1.9' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
- '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
os:
- ubuntu-latest
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: '1.9'
version: '1'
- run: |
julia --project=docs -e '
using Pkg
Expand Down
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "IndividualDisplacements"
uuid = "b92f0c32-5b7e-11e9-1d7b-238b2da8b0e6"
authors = ["gaelforget <gforget@mit.edu>"]
version = "0.4.4"
version = "0.4.5"

[deps]
Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
Expand All @@ -14,9 +14,9 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"

[compat]
Artifacts = "1"
CyclicArrays = "0.2, 0.3, 0.4, 0.5"
DataFrames = "0.21, 0.22, 1"
CyclicArrays = "0.5"
DataFrames = "1"
LazyArtifacts = "1"
MeshArrays = "0.2.19, 0.2"
MeshArrays = "0.3"
OrdinaryDiffEq = "5, 6"
julia = "^1.6"
julia = "^1.9"
7 changes: 4 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,12 @@ makedocs(
sitename = "IndividualDisplacements",
format = Documenter.HTML(),
pages = [
"Introduction" => "index.md",
"Introduction" => "index.md",
"User Guide" => "workflow.md",
"Examples" => "examples.md",
"Tool Box" => "API.md"],
doctest = false,
"Tool Box" => "API.md"],
doctest = false,
warnonly = [:cross_references,:missing_docs],
modules = [IndividualDisplacements]
)

Expand Down

0 comments on commit 762933f

Please sign in to comment.