Skip to content

Commit af1d216

Browse files
mprattimholy
authored andcommitted
Add Distributions.jl requirement (#30)
1 parent be1b929 commit af1d216

File tree

7 files changed

+8
-15
lines changed

7 files changed

+8
-15
lines changed

.travis.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,12 @@ notifications:
99
email: false
1010
script:
1111
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
12-
- julia -e 'Pkg.add("Distributions")' # Needed for Docs and Tests
13-
- julia -e 'Pkg.add("TestImages")' # Needed for Docs
14-
- julia -e 'Pkg.add("ImageMagick")' # Needed for Docs
15-
- julia -e 'Pkg.add("Images")' # Needed for Docs
16-
- julia -e 'Pkg.clone("https://github.com/JuliaImages/ImageDraw.jl")' # Needed for Docs
1712
- julia -e 'Pkg.clone(pwd()); Pkg.build("ImageFeatures")'
1813
- julia -e 'Pkg.test("ImageFeatures", coverage=false)'
1914
after_success:
2015
# - if [ $TRAVIS_OS_NAME = "linux" ]; then
2116
# julia -e 'cd(Pkg.dir("ImageFeatures")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';
2217
# fi
2318
- julia -e 'Pkg.add("Documenter")'
19+
- julia -e 'Pkg.clone("https://github.com/JuliaImages/ImageDraw.jl")' # Needed for Docs
2420
- julia -e 'cd(Pkg.dir("ImageFeatures")); include(joinpath("docs", "make.jl"))'

REQUIRE

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
julia 0.5
2+
ColorTypes
23
Images 0.5
3-
Colors 0.6
4-
ColorVectorSpace 0.1
4+
Distributions 0.12
55
FixedPointNumbers 0.1
6-
FileIO
7-
Compat 0.7.15
8-
StatsBase

test/REQUIRE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
Colors
12
FactCheck
23
TestImages
34
@linux ImageMagick
45
@windows ImageMagick
56
@osx QuartzImageIO
6-
Distributions

test/brisk.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using FactCheck, Images, ImageFeatures, TestImages, Distributions, ColorTypes, TestImages
1+
using FactCheck, Images, ImageFeatures, TestImages, Distributions, ColorTypes
22

33
facts("BRISK") do
44

test/freak.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using FactCheck, Images, ImageFeatures, TestImages, Distributions, ColorTypes, TestImages
1+
using FactCheck, Images, ImageFeatures, TestImages, Distributions, ColorTypes
22

33
facts("FREAK") do
44

test/lbp.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using FactCheck, Base.Test, Images, Colors, FixedPointNumbers, ImageFeatures, TestImages
1+
using FactCheck, Base.Test, Images, Colors, FixedPointNumbers, ImageFeatures
22

33
facts("Local Binary Patterns") do
44

test/orb.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using FactCheck, Images, ImageFeatures, TestImages, Distributions, TestImages
1+
using FactCheck, Images, ImageFeatures, TestImages, Distributions
22

33
facts("ORB") do
44

0 commit comments

Comments
 (0)