Skip to content

Commit 6e754e9

Browse files
require a newer Julia
1 parent fbcbef4 commit 6e754e9

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

.travis.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ os:
44
- linux
55
# - osx
66
julia:
7-
- 1.0
8-
- 1.1
9-
- nightly
7+
- 1
8+
# - nightly
109

11-
matrix:
12-
allow_failures:
13-
- julia: nightly
10+
#matrix:
11+
# allow_failures:
12+
# - julia: nightly
1413

1514
notifications:
1615
email: false

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ MacroTools = "0.5"
2727
NaNMath = "0.3"
2828
SpecialFunctions = "0.7, 0.8, 0.9, 0.10"
2929
StaticArrays = "0.10, 0.11, 0.12"
30-
julia = "1"
30+
julia = "1.2"
3131

3232
[extras]
3333
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"

appveyor.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
environment:
22
matrix:
33
- julia_version: 1
4-
- julia_version: nightly
4+
# - julia_version: nightly
55

66
platform:
77
- x86 # 32-bit
88
- x64 # 64-bit
99

1010
# # Uncomment the following lines to allow failures on nightly julia
1111
# # (tests will run but not make your overall status red)
12-
matrix:
13-
allow_failures:
14-
- julia_version: nightly
12+
#matrix:
13+
# allow_failures:
14+
# - julia_version: nightly
1515

1616
branches:
1717
only:

test/direct.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ s∂ = sparse(∂)
4848
@test nnz(s∂) == 8
4949
Joop,Jiip = eval.(ModelingToolkit.build_function(s∂,[x,y,z],[σ,ρ,β],[t.op.name]))
5050
J = Joop([1.0,2.0,3.0],[1.0,2.0,3.0],1.0)
51-
length(nonzeros(s∂)) == 8
51+
@test length(nonzeros(s∂)) == 8
5252
J2 = copy(J)
5353
Jiip(J2,[1.0,2.0,3.0],[1.0,2.0,3.0],1.0)
5454
@test J2 == J

0 commit comments

Comments
 (0)