Skip to content

Commit 5f8b050

Browse files
authored
Add compat bounds on all dependencies (#126)
Closes #117 Closes #118 Closes #119 Closes #120 Closes #121 Closes #122 Closes #123 Closes #124 Closes #125
1 parent 13b4407 commit 5f8b050

File tree

5 files changed

+27
-12
lines changed

5 files changed

+27
-12
lines changed

.travis.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,23 @@ os:
55
- osx
66
julia:
77
- 1.0
8-
- 1.1
8+
- 1.2
99
- nightly
1010
notifications:
1111
email: false
1212

1313
# use default julia script for test
1414

15-
# control of actual deployment is in the Documenter make script
1615
jobs:
1716
include:
18-
- stage: deploy
17+
- stage: "Documentation"
1918
julia: 1.0
2019
os: linux
2120
script:
22-
- julia -e 'import Pkg; Pkg.add("Documenter")'
23-
- julia -e 'import ImageFiltering; ENV["DOCUMENTER_DEBUG"] = "true"; include(joinpath("docs","make.jl"))'
21+
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
22+
Pkg.instantiate()'
23+
- julia --project=docs/ docs/make.jl
24+
after_success: skip
2425

2526
after_success:
2627
# push coverage results to Codecov

Project.toml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,21 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
2121
TiledIteration = "06e1c1a7-607b-532d-9fad-de7d9aa2abac"
2222

2323
[compat]
24-
DataStructures = ">= 0.4.6"
25-
FFTW = ">= 0.0.3"
26-
FixedPointNumbers = ">= 0.3.0"
27-
StaticArrays = ">= 0.0.5"
28-
julia = "1"
24+
CatIndices = "0.2"
25+
Colors = "0.9"
26+
ColorVectorSpace = "0.6, 0.7"
27+
ComputationalResources = "0.3"
28+
DataStructures = "0.14, 0.15, 0.16, 0.17"
2929
FFTViews = "0.3"
30+
FFTW = "0.3, 1"
31+
FixedPointNumbers = "0.5, 0.6"
32+
ImageCore = "0.8"
33+
MappedArrays = "0.2"
34+
OffsetArrays = "0.10, 0.11"
35+
Requires = "0.5"
36+
StaticArrays = "0.10, 0.11, 0.12"
37+
TiledIteration = "0.2"
38+
julia = "1"
3039

3140
[extras]
3241
AxisArrays = "39de3d68-74b9-583c-8d2d-e117c070f3a9"

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
environment:
22
matrix:
33
- julia_version: 1.0
4-
- julia_version: 1.1
4+
- julia_version: 1.2
55
- julia_version: latest
66

77
platform:

docs/Project.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[deps]
2+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3+
4+
[compat]
5+
Documenter = "0.23"

docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ deploydocs(repo = "github.com/JuliaImages/ImageFiltering.jl.git",
99
target = "build",
1010
deps = nothing,
1111
make = nothing,
12-
julia = "0.5")
12+
julia = "1.2")

0 commit comments

Comments
 (0)