Skip to content

Commit 296723c

Browse files
authored
do using of at-required packages relative (#116)
* do using of at-required packages relative * bump version * Update NaNMath.jl * Update SpecialFunctions.jl
1 parent c969bdf commit 296723c

File tree

3 files changed

+3
-3
lines changed

3 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 = "ChainRules"
22
uuid = "082447d4-558c-5d27-93f4-14fc19e9eca2"
3-
version = "0.2.0"
3+
version = "0.2.1"
44

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

src/rulesets/packages/NaNMath.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module NaNMathGlue
22
using ChainRulesCore
3-
using NaNMath
3+
using ..NaNMath
44

55
@scalar_rule(NaNMath.sin(x), NaNMath.cos(x))
66
@scalar_rule(NaNMath.cos(x), -NaNMath.sin(x))

src/rulesets/packages/SpecialFunctions.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module SpecialFunctionsGlue
22
using ChainRulesCore
3-
using SpecialFunctions
3+
using ..SpecialFunctions
44

55

66
@scalar_rule(SpecialFunctions.lgamma(x), SpecialFunctions.digamma(x))

0 commit comments

Comments
 (0)