Skip to content

Commit

Permalink
remove compat
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-Barth committed Mar 25, 2020
1 parent 4d3a7b4 commit ec51723
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 8 deletions.
2 changes: 0 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ version = "0.6.1"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
Glob = "c27321d9-0574-5035-807b-f59d2c89b15c"
Expand All @@ -21,7 +20,6 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

[compat]
AbstractTrees = "0.2, 0.3"
Compat = "2, 3"
Glob = "1"
Gumbo = "0.5, 0.7"
HTTP = "0.8"
Expand Down
3 changes: 0 additions & 3 deletions src/PhysOcean.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@

module PhysOcean

using Compat
using Compat: CartesianIndices

using Dates
using Statistics

Expand Down
1 change: 0 additions & 1 deletion src/WorldOceanDatabase.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import Glob
using Missings
using Printf
using Dates
using Compat
import PhysOcean: addprefix!

"""
Expand Down
2 changes: 1 addition & 1 deletion src/floodfill!.jl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function floodfill!(A::AbstractArray,B::AbstractArray,fillvalue;MAXITER=())
cw=1
iter=0

RI = Compat.CartesianIndices(size(A))
RI = CartesianIndices(size(A))
I1, Iend = first(RI), last(RI)
needtocontinue=true
while needtocontinue
Expand Down
2 changes: 1 addition & 1 deletion src/geostrophy.jl
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function myfilter3(A::AbstractArray,fillvalue,isfixed,ntimes=1)
B=A
end

RI = Compat.CartesianIndices(size(A))
RI = CartesianIndices(size(A))
I1, Iend = first(RI), last(RI)
for nn=1:ntimes

Expand Down

0 comments on commit ec51723

Please sign in to comment.