Skip to content

Commit 473f676

Browse files
committed
update doc building and badges
1 parent 9da744d commit 473f676

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
*Numerical inverse Laplace transform*
44

55
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://jlapeyre.github.io/InverseLaplace.jl/latest)
6+
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://jlapeyre.github.io/InverseLaplace.jl/stable)
67
Linux, OSX: [![Build Status](https://travis-ci.org/jlapeyre/InverseLaplace.jl.svg)](https://travis-ci.org/jlapeyre/InverseLaplace.jl)   Windows: [![Build Status](https://ci.appveyor.com/api/projects/status/github/jlapeyre/InverseLaplace.jl?branch=master&svg=true)](https://ci.appveyor.com/project/jlapeyre/inverselaplace-jl)      
78
[![Coverage Status](https://coveralls.io/repos/github/jlapeyre/InverseLaplace.jl/badge.svg?branch=master)](https://coveralls.io/github/jlapeyre/InverseLaplace.jl?branch=master)
89
[![codecov](https://codecov.io/gh/jlapeyre/InverseLaplace.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/jlapeyre/InverseLaplace.jl)

docs/make.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ makedocs(
1212
deploydocs(
1313
repo = "github.com/jlapeyre/InverseLaplace.jl.git",
1414
target = "build",
15-
julia = "0.6",
15+
julia = "0.7",
16+
osname = "linux",
1617
deps = nothing,
1718
make = nothing
1819
)

src/weeks.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ _set_coefficients(w::Weeks) = (w.coefficients = _get_coefficients(w))
2929
const weeks_default_num_terms = 64
3030

3131
"""
32-
w::Weeks = Weeks(func::Function, Nterms::Integer=64, sigma=1.0, b=1.0; datatype=Float64)
32+
w::Weeks{datatype} = Weeks(func::Function, Nterms::Integer=64, sigma=1.0, b=1.0; datatype=Float64)
3333
3434
Return `w`, which estimates the inverse Laplace transform of `func` with
3535
the Weeks algorithm. `w(t)` evaluates the transform at `t`. The accuracy depends on the choice
@@ -163,7 +163,7 @@ function optimize(w::WeeksErr, t)
163163
end
164164

165165
"""
166-
w::WeeksErr = WeeksErr(func::Function, Nterms::Integer=64, sigma=1.0, b=1.0; datatype=Float64)
166+
w::WeeksErr{datatype} = WeeksErr(func::Function, Nterms::Integer=64, sigma=1.0, b=1.0; datatype=Float64)
167167
168168
Return `w`, which estimates the inverse Laplace transform of `func` via the Weeks algorithm.
169169
`w(t)` returns a tuple containing the inverse transform at `t` and an error estimate. The accuracy of the

0 commit comments

Comments
 (0)