Skip to content

Commit

Permalink
Merge pull request #141 from JuliaClimate/Balinus-patch-1
Browse files Browse the repository at this point in the history
ClimateBase 0.6
  • Loading branch information
Balinus authored Apr 3, 2020
2 parents 29b23b2 + 797afb0 commit 6a5781b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
7 changes: 2 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ language: julia
os:
- linux
- osx
julia:
- 1.0
julia:
- 1.3
- 1.4
- nightly

script:
Expand All @@ -31,6 +31,3 @@ notifications:

after_success:
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder()); Coveralls.submit(process_folder())'



6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name = "ClimateTools"
uuid = "4f4ee721-4970-5af2-8560-6c1d960e3231"
authors = ["Philippe Roy <[email protected]>"]
repo = "https://github.com/JuliaClimate/ClimateTools.jl.git"
version = "0.19.0"
version = "0.20.0"

[deps]
ArgCheck = "dce04be8-c92d-5529-be00-80e4d2c0e197"
Expand Down Expand Up @@ -30,11 +30,11 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
[compat]
ArgCheck = "1, 2.0"
AxisArrays = "0.3, 0.4"
ClimateBase = "0.3"
ClimateBase = "0.6"
DataFrames = "0.19, 0.20"
Distances = "0.7, 0.8"
Extremes = "0.1.1"
GeoStats = "0.10, 0.11"
GeoStats = "0.11"
Interpolations = "0.12"
InverseDistanceWeighting = "0.2, 0.3"
IterTools = "1.1, 1.2, 1.3"
Expand Down
5 changes: 3 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
environment:
matrix:
matrix:
- julia_version: 1.3
- julia_version: 1.4
- julia_version: nightly

platform:
platform:
- x64 # 64-bit

# Uncomment the following lines to allow failures on nightly julia
Expand Down
2 changes: 1 addition & 1 deletion src/functions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ function interp!(OUT, timeorig, dataorig, lonorig, latorig, londest, latdest, va
p = Progress(length(timeorig), 5, "Regridding: ")
for t = 1:length(timeorig)

SD = StructuredGridData(Dict(target => dataorig[:, :, t]), lonorig, latorig)
SD = StructuredGridData(OrderedDict(target => dataorig[:, :, t]), lonorig, latorig)

problem = EstimationProblem(SD, SG, target)
solution = solve(problem, solver)
Expand Down

2 comments on commit 6a5781b

@Balinus
Copy link
Member Author

@Balinus Balinus commented on 6a5781b Apr 3, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/12169

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.20.0 -m "<description of version>" 6a5781ba0c32ab3892adfb82e46787efa22a2b4c
git push origin v0.20.0

Please sign in to comment.