Skip to content

Commit b2c1dec

Browse files
committed
Merge branch 'master' of https://github.com/TuringLang/Turing.jl
2 parents 669fba8 + ed1a28a commit b2c1dec

File tree

186 files changed

+10
-547
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

186 files changed

+10
-547
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ deps/build.log
1515

1616
docs/build/
1717
docs/site/
18-
docs/homepage/_site/
19-
docs/homepage/.sass-cache/
18+
docs/site/_site/
19+
docs/site/.sass-cache/
2020

2121
.DS_Store

README.md

+1-1

REQUIRE

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Libtask 0.1.1
99
Flux 0.6.7
1010
MacroTools
1111
StatsFuns 0.7.0
12+
Bijectors
1213

1314
ProgressMeter 0.6.0
1415
BinaryProvider 0.4.0

docs/make.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ using LibGit2: clone
55
include("homepage-updater.jl")
66

77
# Get paths.
8-
examples_path = joinpath(@__DIR__, joinpath("homepage", "_tutorials"))
8+
examples_path = joinpath(@__DIR__, joinpath("site", "_tutorials"))
99
source_path = joinpath(@__DIR__, "src")
10-
build_relative = joinpath("homepage", "_docs")
10+
build_relative = joinpath("site", "_docs")
1111
build_path = joinpath(@__DIR__, build_relative)
1212

1313
isdir(examples_path) || mkpath(examples_path)
@@ -62,7 +62,7 @@ postprocess_markdown(build_path, yaml_dict, original = source_path)
6262
page_update = update_homepage(
6363
"github.com/TuringLang/Turing.jl.git",
6464
"gh-pages",
65-
"homepage"
65+
"site"
6666
)
6767

6868
# # Deploy documentation.
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.

docs/homepage/_layouts/home.html renamed to docs/site/_layouts/home.html

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
{{ content }}
66

7-
<h3 class="archive__subtitle">{{ site.data.ui-text[site.locale].recent_posts | default: "Recent Posts" }}</h3>
8-
97
{% for post in paginator.posts %}
108
{% include archive-single.html %}
119
{% endfor %}
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.

src/Turing.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ module Turing
1111
using Requires
1212
using Reexport
1313
@reexport using Distributions
14+
using Bijectors
1415
@reexport using MCMCChain
1516
using ForwardDiff
1617
using StatsFuns
@@ -120,7 +121,6 @@ include("utilities/resample.jl")
120121
include("support/stan-interface.jl")
121122
end
122123
include("utilities/helper.jl")
123-
include("utilities/transform.jl")
124124
include("utilities/robustinit.jl")
125125
include("utilities/util.jl") # utility functions
126126
include("utilities/io.jl") # I/O

0 commit comments

Comments
 (0)