Skip to content

Commit a7c6468

Browse files
authored
Add Distributions 0.24 (#146)
* Add Distributions 0.24 * Mark ReverseDiff for `filldist(::Skellam, n)` as broken * Copy changes from DistributionsAD * Use only one Github Action * Rename GitHub Action * Fix workflow file * Fix typo * Use FiniteDifferences instead of FiniteDiff * Replace FDM with FiniteDifferences * Remove `f_loglik` and `f_logpdf` * No bijector for MatrixNormal * Fix calls of `test_ad` * Use broken keyword argument in matrixvariate tests * Forward transformations * Add default for `broken` in `test_ad` * Use NNlib
1 parent 3387a40 commit a7c6468

File tree

8 files changed

+193
-166
lines changed

8 files changed

+193
-166
lines changed

.github/workflows/ForwardDiff_Tracker.yml .github/workflows/AD.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: ForwardDiff and Tracker tests
1+
name: AD tests
22

33
on:
44
push:
@@ -20,6 +20,11 @@ jobs:
2020
- macOS-latest
2121
arch:
2222
- x64
23+
AD:
24+
- ForwardDiff
25+
- Tracker
26+
- ReverseDiff
27+
- Zygote
2328
steps:
2429
- uses: actions/checkout@v2
2530
- uses: julia-actions/setup-julia@v1
@@ -30,4 +35,4 @@ jobs:
3035
- uses: julia-actions/julia-runtest@latest
3136
env:
3237
GROUP: AD
33-
AD: ForwardDiff_Tracker
38+
AD: ${{ matrix.AD }}

.github/workflows/ReverseDiff.yml

-33
This file was deleted.

.github/workflows/Zygote.yml

-33
This file was deleted.

Project.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "Bijectors"
22
uuid = "76274a88-744f-5084-9051-94815aaf08c4"
3-
version = "0.8.7"
3+
version = "0.8.8"
44

55
[deps]
66
ArgCheck = "dce04be8-c92d-5529-be00-80e4d2c0e197"
@@ -20,7 +20,7 @@ StatsFuns = "4c63d2b9-4356-54db-8cca-17b64c39e42c"
2020
[compat]
2121
ArgCheck = "1, 2"
2222
Compat = "3"
23-
Distributions = "0.23.3"
23+
Distributions = "0.23.3, 0.24"
2424
MappedArrays = "0.2.2, 0.3"
2525
NNlib = "0.6, 0.7"
2626
Reexport = "0.2"

test/Project.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[deps]
22
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
33
DistributionsAD = "ced4e74d-a319-5a8a-b0ac-84af2272839c"
4-
FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41"
4+
FiniteDifferences = "26cc04aa-876d-5657-8c51-4c34ba976000"
55
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
66
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
7+
NNlib = "872c559c-99b0-510c-b3b7-b6c96a88d5cd"
78
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
89
ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267"
910
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
@@ -13,8 +14,9 @@ Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"
1314
[compat]
1415
Combinatorics = "1.0.2"
1516
DistributionsAD = "0.6.3"
16-
FiniteDiff = "2.6"
17+
FiniteDifferences = "0.11"
1718
ForwardDiff = "0.10.12"
19+
NNlib = "0.7"
1820
ReverseDiff = "1.4.2"
1921
Tracker = "0.2.11"
2022
Zygote = "0.5.4"

0 commit comments

Comments
 (0)