diff --git a/.gitignore b/.gitignore index 8c960ec8..cd8524be 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ *.jl.cov *.jl.*.cov *.jl.mem +_build/ +_static/ +_templates diff --git a/.travis.yml b/.travis.yml index 744cf223..fd022773 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,16 +4,14 @@ os: - linux - osx julia: - - release + - 0.5 - nightly notifications: email: false # uncomment the following lines to override the default test script -#script: -# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi -# - julia -e 'Pkg.clone(pwd()); Pkg.build("Augmentor"); Pkg.test("Augmentor"; coverage=true)' +script: + - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi + - julia --color=yes -e 'Pkg.clone(pwd()); Pkg.build("Augmentor"); Pkg.test("Augmentor"; coverage=VERSION >= v"0.6.0-alpha")' after_success: - # push coverage results to Coveralls - - julia -e 'cd(Pkg.dir("Augmentor")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())' # push coverage results to Codecov - - julia -e 'cd(Pkg.dir("Augmentor")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())' + - julia -e 'if VERSION >= v"0.6.0-alpha" cd(Pkg.dir("Augmentor")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder()); end' diff --git a/README.md b/README.md index 36497efb..fbb9f3b7 100644 --- a/README.md +++ b/README.md @@ -3,5 +3,3 @@ [![Build Status](https://travis-ci.org/Evizero/Augmentor.jl.svg?branch=master)](https://travis-ci.org/Evizero/Augmentor.jl) [![Coverage Status](https://coveralls.io/repos/Evizero/Augmentor.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/Evizero/Augmentor.jl?branch=master) - -[![codecov.io](http://codecov.io/github/Evizero/Augmentor.jl/coverage.svg?branch=master)](http://codecov.io/github/Evizero/Augmentor.jl?branch=master) diff --git a/REQUIRE b/REQUIRE index 1c3505e2..bf1486f0 100644 --- a/REQUIRE +++ b/REQUIRE @@ -1,10 +1,11 @@ julia 0.5 -ImageCore +ImageCore 0.1.2 ImageTransformations -CoordinateTransformations +CoordinateTransformations 0.4.0 +Interpolations 0.6 Rotations StaticArrays OffsetArrays -Interpolations -ColorTypes +IdentityRanges +ColorTypes 0.4 Compat 0.19