From ad82f5b50ede2085c38776dcf757b4490c73172a Mon Sep 17 00:00:00 2001 From: Rob Blackwell Date: Wed, 29 Aug 2018 20:05:25 +0100 Subject: [PATCH] Bump to 0.7 --- .travis.yml | 3 ++- REQUIRE | 2 +- src/EchogramImages.jl | 1 - test/runtests.jl | 6 +----- 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 736771e..05b262a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,8 @@ os: - linux - osx julia: - - 0.6 + - 0.7 + - 1.0 - nightly notifications: email: false diff --git a/REQUIRE b/REQUIRE index 1d4adba..8219b9b 100644 --- a/REQUIRE +++ b/REQUIRE @@ -1,4 +1,4 @@ -julia 0.6 +julia 0.7 Images MappedArrays IndirectArrays diff --git a/src/EchogramImages.jl b/src/EchogramImages.jl index 8362643..5665d30 100644 --- a/src/EchogramImages.jl +++ b/src/EchogramImages.jl @@ -1,4 +1,3 @@ -__precompile__() module EchogramImages using Images diff --git a/test/runtests.jl b/test/runtests.jl index 1b07fa8..0470ae6 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,9 +1,5 @@ using EchogramImages -@static if VERSION < v"0.7.0-DEV.2005" - using Base.Test -else - using Test -end +using Test a = rand(100,100) img = imagesc(a)