Skip to content

Commit

Permalink
Merge f75e816 into fb10a06
Browse files Browse the repository at this point in the history
  • Loading branch information
s-broda committed Nov 8, 2018
2 parents fb10a06 + f75e816 commit f869b4c
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 42 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
docs/build/
docs/site
src/data
docs/Manifest.toml
14 changes: 12 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,15 @@ after_success:
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
# deploy docs to gh-pages
- julia -e 'using Pkg; Pkg.add("Documenter"); include(joinpath("docs", "make.jl"))'
jobs:
include:
- stage: "Documentation"
julia: 1.0
os: linux
script:
- julia --project=docs/ -e 'using Pkg;
Pkg.develop(PackageSpec(path=pwd()));
Pkg.instantiate();
Pkg.build("ARCH")'
- julia --project=docs/ docs/make.jl
after_success: skip
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build status (Linux, OSX)](https://travis-ci.org/s-broda/ARCH.jl.svg?branch=master)](https://travis-ci.org/s-broda/ARCH.jl) [![Build status (Windows)](https://ci.appveyor.com/api/projects/status/6b98se8nrsbl71nb/branch/master?svg=true)](https://ci.appveyor.com/project/s-broda/arch-jl/branch/master) [![Coverage (coveralls)](https://coveralls.io/repos/s-broda/ARCH.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/s-broda/ARCH.jl?branch=master) [![Coverage (codecov)](http://codecov.io/github/s-broda/ARCH.jl/coverage.svg?branch=master)](http://codecov.io/github/s-broda/ARCH.jl?branch=master) [![Docs (latest)](https://img.shields.io/badge/docs-latest-blue.svg)](https://s-broda.github.io/ARCH.jl/latest)
[![Build status (Linux, OSX)](https://travis-ci.org/s-broda/ARCH.jl.svg?branch=master)](https://travis-ci.org/s-broda/ARCH.jl) [![Build status (Windows)](https://ci.appveyor.com/api/projects/status/6b98se8nrsbl71nb/branch/master?svg=true)](https://ci.appveyor.com/project/s-broda/arch-jl/branch/master) [![Coverage (coveralls)](https://coveralls.io/repos/s-broda/ARCH.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/s-broda/ARCH.jl?branch=master) [![Coverage (codecov)](http://codecov.io/github/s-broda/ARCH.jl/coverage.svg?branch=master)](http://codecov.io/github/s-broda/ARCH.jl?branch=master) [![Docs (latest)](https://img.shields.io/badge/docs-dev-blue.svg)](https://s-broda.github.io/ARCH.jl/dev)

# The ARCH Package for Julia

Expand Down
4 changes: 3 additions & 1 deletion deps/build.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
datadir = joinpath(@__DIR__, "..", "src", "data")
mkdir(datadir)
if ~isdir(datadir)
mkdir(datadir)
end
download("http://people.stern.nyu.edu/wgreene/Text/Edition7/TableF20-1.txt", joinpath(datadir, "bollerslev_ghysels.txt"))
3 changes: 3 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
11 changes: 5 additions & 6 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
push!(LOAD_PATH,"../src/")
using Documenter, ARCH
using Documenter, ARCH, Pkg
makedocs(modules=[ARCH],
doctest=true)
sitename="ARCH.jl Documentation",
doctest=true,
strict=true)

deploydocs(deps = Deps.pip("mkdocs", "python-markdown-math"),
repo = "github.com/s-broda/ARCH.jl.git",
julia = "1.0",
osname = "linux")
deploydocs(repo="github.com/s-broda/ARCH.jl.git")
29 changes: 0 additions & 29 deletions docs/mkdocs.yml

This file was deleted.

3 changes: 0 additions & 3 deletions docs/src/types.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,6 @@ can call `coef`, `coefnames`, `confint`, `dof`, `informationmatrix`, `isfitted`,
```jldoctest TYPES
julia> nobs(am)
1974
julia> loglikelihood(am)
-989.3519039123187
```

Other useful methods include [`volatilities`](@ref) and [`residuals`](@ref).

0 comments on commit f869b4c

Please sign in to comment.