Skip to content

Commit

Permalink
Add Distributions 0.24 (#146)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
devmotion authored Nov 21, 2020
1 parent 3387a40 commit a7c6468
Show file tree
Hide file tree
Showing 8 changed files with 193 additions and 166 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ForwardDiff and Tracker tests
name: AD tests

on:
push:
Expand All @@ -20,6 +20,11 @@ jobs:
- macOS-latest
arch:
- x64
AD:
- ForwardDiff
- Tracker
- ReverseDiff
- Zygote
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
Expand All @@ -30,4 +35,4 @@ jobs:
- uses: julia-actions/julia-runtest@latest
env:
GROUP: AD
AD: ForwardDiff_Tracker
AD: ${{ matrix.AD }}
33 changes: 0 additions & 33 deletions .github/workflows/ReverseDiff.yml

This file was deleted.

33 changes: 0 additions & 33 deletions .github/workflows/Zygote.yml

This file was deleted.

4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Bijectors"
uuid = "76274a88-744f-5084-9051-94815aaf08c4"
version = "0.8.7"
version = "0.8.8"

[deps]
ArgCheck = "dce04be8-c92d-5529-be00-80e4d2c0e197"
Expand All @@ -20,7 +20,7 @@ StatsFuns = "4c63d2b9-4356-54db-8cca-17b64c39e42c"
[compat]
ArgCheck = "1, 2"
Compat = "3"
Distributions = "0.23.3"
Distributions = "0.23.3, 0.24"
MappedArrays = "0.2.2, 0.3"
NNlib = "0.6, 0.7"
Reexport = "0.2"
Expand Down
6 changes: 4 additions & 2 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[deps]
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
DistributionsAD = "ced4e74d-a319-5a8a-b0ac-84af2272839c"
FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41"
FiniteDifferences = "26cc04aa-876d-5657-8c51-4c34ba976000"
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
NNlib = "872c559c-99b0-510c-b3b7-b6c96a88d5cd"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand All @@ -13,8 +14,9 @@ Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"
[compat]
Combinatorics = "1.0.2"
DistributionsAD = "0.6.3"
FiniteDiff = "2.6"
FiniteDifferences = "0.11"
ForwardDiff = "0.10.12"
NNlib = "0.7"
ReverseDiff = "1.4.2"
Tracker = "0.2.11"
Zygote = "0.5.4"
Expand Down
Loading

2 comments on commit a7c6468

@devmotion
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/25099

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.8.8 -m "<description of version>" a7c6468bbd82eb7203d198a51ebda7992f3f8b76
git push origin v0.8.8

Please sign in to comment.