Skip to content

Commit 53717fe

Browse files
committed
update README and REQUIRE
1 parent a066acc commit 53717fe

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ julia:
88
notifications:
99
email: false
1010
after_success:
11-
- julia -e 'Pkg.add("Coverage"); cd(Pkg.dir("InverseLaplace")); using Coverage; Coveralls.submit(process_folder()); Codecov.submit(process_folder())'
1211
- julia -e 'Pkg.add("Documenter")'
1312
- julia -e 'cd(Pkg.dir("InverseLaplace")); include(joinpath("docs", "make.jl"))'
13+
- julia -e 'Pkg.add("Coverage"); cd(Pkg.dir("InverseLaplace")); using Coverage; Coveralls.submit(process_folder()); Codecov.submit(process_folder())'

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,9 @@
55
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://jlapeyre.github.io/InverseLaplace.jl/latest)
66
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)       [![Coverage Status](https://coveralls.io/repos/github/jlapeyre/InverseLaplace.jl/badge.svg?branch=master)](https://coveralls.io/github/jlapeyre/InverseLaplace.jl?branch=master) [![codecov](https://codecov.io/gh/jlapeyre/InverseLaplace.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/jlapeyre/InverseLaplace.jl)
77

8+
9+
This implements some numerical methods for computing inverse Laplace transforms in Julia.
10+
11+
See the documentation https://jlapeyre.github.io/InverseLaplace.jl/latest .
12+
813
Note: the last version of this module supporting Julia v0.4 is tagged v0.0.2

REQUIRE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
julia 0.5
1+
julia 0.6
22
Optim
33
Compat 0.17.0

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ WeeksErr
2626

2727
## Setting parameters
2828

29-
The inverse Laplace tranform routines are not black boxes. They are prone to instability and can give inaccurate or
29+
The inverse Laplace tranform routines should not be treated as black boxes. They are prone to instability and can give inaccurate or
3030
wrong results. There are some parameters you can set to try to minimize these problems.
3131

3232
```@docs

0 commit comments

Comments
 (0)