Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/TuringLang/Turing.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
cpfiffer committed Oct 2, 2018
2 parents 669fba8 + ed1a28a commit b2c1dec
Show file tree
Hide file tree
Showing 186 changed files with 10 additions and 547 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ deps/build.log

docs/build/
docs/site/
docs/homepage/_site/
docs/homepage/.sass-cache/
docs/site/_site/
docs/site/.sass-cache/

.DS_Store
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Coverage Status](https://coveralls.io/repos/github/yebai/Turing.jl/badge.svg?branch=master)](https://coveralls.io/github/yebai/Turing.jl?branch=master)
[![Turing](http://pkg.julialang.org/badges/Turing_0.7.svg)](http://pkg.julialang.org/detail/Turing)
[![Turing](http://pkg.julialang.org/badges/Turing_0.6.svg)](http://pkg.julialang.org/detail/Turing)
[![Documentation](https://img.shields.io/badge/doc-latest-blue.svg)](http://turing.ml/latest/)
[![Documentation](https://img.shields.io/badge/doc-latest-blue.svg)](http://turing.ml/docs/)

News: **Turing.jl is now Julia 1.0 compatible now! Be aware that some things still might fail.**

Expand Down
1 change: 1 addition & 0 deletions REQUIRE
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Libtask 0.1.1
Flux 0.6.7
MacroTools
StatsFuns 0.7.0
Bijectors

ProgressMeter 0.6.0
BinaryProvider 0.4.0
6 changes: 3 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ using LibGit2: clone
include("homepage-updater.jl")

# Get paths.
examples_path = joinpath(@__DIR__, joinpath("homepage", "_tutorials"))
examples_path = joinpath(@__DIR__, joinpath("site", "_tutorials"))
source_path = joinpath(@__DIR__, "src")
build_relative = joinpath("homepage", "_docs")
build_relative = joinpath("site", "_docs")
build_path = joinpath(@__DIR__, build_relative)

isdir(examples_path) || mkpath(examples_path)
Expand Down Expand Up @@ -62,7 +62,7 @@ postprocess_markdown(build_path, yaml_dict, original = source_path)
page_update = update_homepage(
"github.com/TuringLang/Turing.jl.git",
"gh-pages",
"homepage"
"site"
)

# # Deploy documentation.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

{{ content }}

<h3 class="archive__subtitle">{{ site.data.ui-text[site.locale].recent_posts | default: "Recent Posts" }}</h3>

{% for post in paginator.posts %}
{% include archive-single.html %}
{% endfor %}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/Turing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ module Turing
using Requires
using Reexport
@reexport using Distributions
using Bijectors
@reexport using MCMCChain
using ForwardDiff
using StatsFuns
Expand Down Expand Up @@ -120,7 +121,6 @@ include("utilities/resample.jl")
include("support/stan-interface.jl")
end
include("utilities/helper.jl")
include("utilities/transform.jl")
include("utilities/robustinit.jl")
include("utilities/util.jl") # utility functions
include("utilities/io.jl") # I/O
Expand Down
Loading

0 comments on commit b2c1dec

Please sign in to comment.