Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update deps #45

Merged
merged 4 commits into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading