Skip to content

Commit f67c0f6

Browse files
authored
Replace DoesNotExist with NoTangent (#327)
* Replace `DoesNotExist` with `NoTangent` * Bump version
1 parent 26acc96 commit f67c0f6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "SpecialFunctions"
22
uuid = "276daf66-3868-5448-9aa4-cd146d93841b"
3-
version = "1.5"
3+
version = "1.5.1"
44

55
[deps]
66
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"

src/chainrules.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ ChainRulesCore.@scalar_rule(
4545
(
4646
ChainRulesCore.@not_implemented(INCOMPLETE_GAMMA_INFO),
4747
z,
48-
ChainRulesCore.DoesNotExist(),
48+
ChainRulesCore.NoTangent(),
4949
),
5050
(
5151
ChainRulesCore.@not_implemented(INCOMPLETE_GAMMA_INFO),
5252
-z,
53-
ChainRulesCore.DoesNotExist(),
53+
ChainRulesCore.NoTangent(),
5454
),
5555
)
5656
ChainRulesCore.@scalar_rule(

0 commit comments

Comments
 (0)