Skip to content

Commit

Permalink
Merge pull request #45 from gaelforget/v0p2p0a
Browse files Browse the repository at this point in the history
update deps
  • Loading branch information
gaelforget authored Mar 27, 2024
2 parents 8d4bc5b + 02db36b commit f3fe10c
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.6' # 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
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "NCTiles"
uuid = "4c1fdd90-559f-11e9-1abf-07ceafc4ffc0"
authors = ["Gael Forget", "Lauren Milechin"]
version = "0.1.15"
version = "0.2.0"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand All @@ -13,7 +13,7 @@ Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"

[compat]
MeshArrays = "0.2"
NCDatasets = "0.9, 0.10, 0.11, 0.12"
NetCDF = "0.8, 0.9, 0.10, 0.11"
julia = "1.2"
MeshArrays = "0.3"
NCDatasets = "0.12, 0.13, 0.14"
NetCDF = "0.11"
julia = "1.9"
7 changes: 6 additions & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@
ClimateBase = "35604d93-0fb8-4872-9436-495b01d137e2"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306"
MITgcmTools = "62725fbc-3a66-4df3-9000-e33e85b3a198"
MITgcm = "dce5fa8e-68ce-4431-a242-9469c69627a0"
MeshArrays = "cb8c808f-1acf-59a3-9d2b-6e38d009f683"
NCDatasets = "85f8d34a-cbdd-5861-8df4-14fed0d494ab"
NetCDF = "30363a11-5582-574a-97bb-aa9a979735b9"
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"

[compat]
ClimateBase = "0.17"
NCDatasets = "0.12, 0.13, 0.14"

1 change: 1 addition & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ makedocs(
],
"maindocs.md",
"API.md"],
warnonly = [:cross_references,:missing_docs],
modules = [NCTiles]
)

Expand Down
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[NCTiles.jl](https://github.com/gaelforget/NCTiles.jl) mainly aims to make it easier to write (and read) [NetCDF](https://en.wikipedia.org/wiki/NetCDF) files that represent e.g. the whole Earth surface or a subdomain (`tiles`) based on the [CF conventions](http://cfconventions.org).

Goals of [NCTiles.jl](https://github.com/gaelforget/NCTiles.jl) include (1) inter-operability with climate model grids via [MeshArrays.jl](https://github.com/JuliaClimate/MeshArrays.jl), [MITgcmTools.jl](https://github.com/gaelforget/MITgcmTools.jl), and [ClimateModels.jl](https://github.com/gaelforget/ClimateModels.jl); (2) generation of [CF-compliant](http://cfconventions.org) files from suitable array formats.
Goals of [NCTiles.jl](https://github.com/gaelforget/NCTiles.jl) include (1) inter-operability with climate model grids via [MeshArrays.jl](https://github.com/JuliaClimate/MeshArrays.jl), [MITgcm.jl](https://github.com/gaelforget/MITgcm.jl), and [ClimateModels.jl](https://github.com/gaelforget/ClimateModels.jl); (2) generation of [CF-compliant](http://cfconventions.org) files from suitable array formats.

```@contents
Pages = [
Expand Down
2 changes: 1 addition & 1 deletion examples/ex_3.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NCTiles,NCDatasets,NetCDF,Dates,Printf,MITgcmTools
using NCTiles,NCDatasets,NetCDF,Dates,Printf,MITgcm

examplesdir = joinpath("data","ex3")
indir = joinpath(examplesdir,"data","cs510","diags_interp")
Expand Down
2 changes: 1 addition & 1 deletion examples/ex_4.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using MeshArrays, NCDatasets, NCTiles, MITgcmTools,NetCDF
using MeshArrays, NCDatasets, NCTiles, MITgcm,NetCDF


exampledir = joinpath("data","ex4")
Expand Down
2 changes: 1 addition & 1 deletion examples/helper_functions.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using MeshArrays, MITgcmTools
using MeshArrays, MITgcm
# this is needed cause writeNetCDFtiles uses `name` etc

"""
Expand Down

0 comments on commit f3fe10c

Please sign in to comment.