Skip to content

Commit 7862931

Browse files
authored
Merge branch 'main' into predict
2 parents f4d7823 + 1f9a9e1 commit 7862931

File tree

8 files changed

+8
-713
lines changed

8 files changed

+8
-713
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,8 @@ name: CI
33
on:
44
push:
55
branches:
6-
# This is where pull requests from "bors r+" are built.
7-
- staging
8-
# This is where pull requests from "bors try" are built.
9-
- trying
10-
# Build the main branch.
11-
- main
6+
- master
7+
pull_request:
128

139
jobs:
1410
test:

.github/workflows/IntegrationTest.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,8 @@ name: IntegrationTest
33
on:
44
push:
55
branches:
6-
# This is where pull requests from "bors r+" are built.
7-
- staging
8-
# This is where pull requests from "bors try" are built.
9-
- trying
10-
# Build the main branch.
11-
- main
6+
- master
7+
pull_request:
128

139
jobs:
1410
test:

Project.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ uuid = "7a57a42e-76ec-4ea3-a279-07e840d6d9cf"
33
keywords = ["probablistic programming"]
44
license = "MIT"
55
desc = "Common interfaces for probabilistic programming"
6-
version = "0.6.3"
6+
version = "0.7"
77

88
[deps]
99
AbstractMCMC = "80f14c24-f653-4e6a-9b94-39d6b0f70001"
@@ -14,8 +14,10 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1414
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1515

1616
[compat]
17-
AbstractMCMC = "2, 3, 4"
17+
AbstractMCMC = "2, 3, 4, 5"
1818
DensityInterface = "0.4"
1919
Setfield = "0.8.2, 1"
2020
StatsBase = "0.32, 0.33"
21+
Random = "1.6"
22+
SparseArrays = "1.6"
2123
julia = "~1.6.6, 1.7.3"

bors.toml

Lines changed: 0 additions & 18 deletions
This file was deleted.

src/AbstractPPL.jl

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,4 @@ include("abstractprobprog.jl")
2626
include("evaluate.jl")
2727
include("deprecations.jl")
2828

29-
# GraphInfo
30-
module GraphPPL
31-
include("graphinfo.jl")
32-
end
33-
3429
end # module

0 commit comments

Comments
 (0)