Skip to content

Commit 5c267e6

Browse files
authored
Merge pull request #74 from TuringLang/hg/abstract-mcmc-1.0
Set AbstractMCMC lower bound to v1.0
2 parents ac84008 + 292e06b commit 5c267e6

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed

.github/workflows/DynamicPPL-CI.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: DynamicPPL-CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- dev
8+
pull_request:
9+
10+
jobs:
11+
test:
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
matrix:
15+
version:
16+
- '1.0'
17+
- '1'
18+
- 'nightly'
19+
os:
20+
- ubuntu-latest
21+
- macOS-latest
22+
- windows-latest
23+
arch:
24+
- x86
25+
- x64
26+
exclude:
27+
- os: macOS-latest
28+
arch: x86
29+
steps:
30+
- uses: actions/checkout@v2
31+
- uses: julia-actions/setup-julia@v1
32+
with:
33+
version: ${{ matrix.version }}
34+
arch: ${{ matrix.arch }}
35+
- uses: julia-actions/julia-buildpkg@latest
36+
- uses: julia-actions/julia-runtest@latest

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
1111
ZygoteRules = "700de1a5-db45-46bc-99cf-38207098b444"
1212

1313
[compat]
14-
AbstractMCMC = "0.4, 0.5, 1.0"
14+
AbstractMCMC = "1.0"
1515
Bijectors = "0.5.2, 0.6"
1616
Distributions = "0.22, 0.23"
1717
MacroTools = "0.5.1"

0 commit comments

Comments
 (0)