Skip to content

Commit 4bb58f4

Browse files
Merge pull request #23 from ScottPJones/spj/test06
Add Travis and Appveyor testing of v0.6
2 parents 1ed40f8 + 9b775fa commit 4bb58f4

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ os:
55
- osx
66
julia:
77
- 0.5
8+
- 0.6
89
- nightly
910
matrix:
1011
allow_failures:
12+
- julia: 0.6
1113
- julia: nightly
1214
notifications:
1315
email: false

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
[![Join the chat at https://gitter.im/JuliaDiffEq/Lobby](https://badges.gitter.im/JuliaDiffEq/Lobby.svg)](https://gitter.im/JuliaDiffEq/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
44
[![Travis](https://travis-ci.org/JuliaDiffEq/ParameterizedFunctions.jl.svg?branch=master)](https://travis-ci.org/JuliaDiffEq/ParameterizedFunctions.jl) [![AppVeyor](https://ci.appveyor.com/api/projects/status/k6b7d86ddbas1ajk?svg=true)](https://ci.appveyor.com/project/ChrisRackauckas/parameterizedfunctions-jl)
55
[![codecov](https://codecov.io/gh/JuliaDiffEq/ParameterizedFunctions.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaDiffEq/ParameterizedFunctions.jl)
6+
[![ParameterizedFunctions](http://pkg.julialang.org/badges/ParameterizedFunctions_0.5.svg)](http://pkg.julialang.org/?pkg=ParameterizedFunctions)
7+
[![ParameterizedFunctions](http://pkg.julialang.org/badges/ParameterizedFunctions_0.6.svg)](http://pkg.julialang.org/?pkg=ParameterizedFunctions)
68

79
ParameterizedFunctions.jl is a component of the JuliaDiffEq ecosystem which allows
810
for parameters to be explicitly present within functions. The interface which

REQUIRE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
julia 0.5
2-
SymEngine 0.1.2
2+
SymEngine 0.2.0 # This is SymEngine.jl version, not SymEngine version!
33
DataStructures 0.4.6
44
DiffEqBase 0.14.0
55
SimpleTraits 0.1.1

appveyor.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@ environment:
22
matrix:
33
- JULIAVERSION: "julialang/bin/winnt/x86/0.5/julia-0.5-latest-win32.exe"
44
- JULIAVERSION: "julialang/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe"
5+
- JULIAVERSION: "julialang/bin/winnt/x86/0.6/julia-0.6-latest-win32.exe"
6+
- JULIAVERSION: "julialang/bin/winnt/x64/0.6/julia-0.6-latest-win64.exe"
57
- JULIAVERSION: "julianightlies/bin/winnt/x86/julia-latest-win32.exe"
68
- JULIAVERSION: "julianightlies/bin/winnt/x64/julia-latest-win64.exe"
79
matrix:
810
allow_failures:
11+
- JULIAVERSION: "julialang/bin/winnt/x86/0.6/julia-0.6-latest-win32.exe"
12+
- JULIAVERSION: "julialang/bin/winnt/x64/0.6/julia-0.6-latest-win64.exe"
913
- JULIAVERSION: "julianightlies/bin/winnt/x86/julia-latest-win32.exe"
1014
- JULIAVERSION: "julianightlies/bin/winnt/x64/julia-latest-win64.exe"
1115
branches:

0 commit comments

Comments
 (0)