Skip to content

Commit

Permalink
Merge 07e1762 into 7933891
Browse files Browse the repository at this point in the history
  • Loading branch information
gaelforget committed Jun 9, 2021
2 parents 7933891 + 07e1762 commit 6b9d86a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -5,7 +5,7 @@ os:
- osx
- windows
julia:
- 1.3
- 1.5
- nightly
notifications:
email: false
Expand All @@ -17,7 +17,7 @@ after_success:
jobs:
include:
- stage: "Documentation"
julia: 1.4
julia: 1.5
script:
- julia --project=docs/ -e 'using Pkg; Pkg.instantiate();
Pkg.develop(PackageSpec(path=pwd()))'
Expand Down
5 changes: 3 additions & 2 deletions Project.toml
@@ -1,9 +1,10 @@
name = "OceanStateEstimation"
uuid = "891f6deb-a4f5-4bc5-a2e3-1e8f649cdd2c"
authors = ["gaelforget <gforget@mit.edu>"]
version = "0.1.7"
version = "0.1.8"

[deps]
Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
FortranFiles = "c58ffaec-ab22-586d-bfc5-781a99fd0b10"
MITgcmTools = "62725fbc-3a66-4df3-9000-e33e85b3a198"
MeshArrays = "cb8c808f-1acf-59a3-9d2b-6e38d009f683"
Expand All @@ -14,4 +15,4 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
FortranFiles = "0.6"
MITgcmTools = "0.1"
MeshArrays = "0.2"
julia = "1"
julia = "1.5"
4 changes: 2 additions & 2 deletions src/OceanStateEstimation.jl
@@ -1,6 +1,6 @@
module OceanStateEstimation

using Statistics, Pkg.Artifacts
using Statistics, Pkg.Artifacts, Downloads
using FortranFiles, MeshArrays, MITgcmTools
export dataverse_lists, get_from_dataverse, get_ecco_files
export ECCOclim_path, OCCAclim_path
Expand Down Expand Up @@ -32,7 +32,7 @@ function get_from_dataverse(lst::String,nam::String,pth::String)
ii = findall([occursin("$nam", lists.name[i]) for i=1:length(lists.ID)])
!isdir("$pth"*"$nam") ? mkdir("$pth"*"$nam") : nothing
for i in ii
nam1=download(lists.URL[i])
nam1=Downloads.download(lists.URL[i])
nam2=joinpath("$pth"*"$nam/",lists.name[i])
mv(nam1,nam2)
end
Expand Down

0 comments on commit 6b9d86a

Please sign in to comment.