Skip to content

Commit 36ef083

Browse files
authored
Merge pull request #42 from slimgroup/fixchainrules
Add ChainRulesCore as a dependency instead of SpecialFunctions.ChainRulesCore
2 parents c1753b3 + 4d62849 commit 36ef083

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Diff for: Project.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
name = "JOLI"
22
uuid = "bb331ad6-a1cf-11e9-23da-9bcb53c69f6f"
33
authors = ["Henryk Modzelewski <[email protected]>"]
4-
version = "0.8.3"
4+
version = "0.8.4"
55

66
[deps]
7+
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
78
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
89
DistributedArrays = "aaf54ef3-cdf8-58ed-94cc-d582ad619b94"
910
FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341"
@@ -23,6 +24,7 @@ SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
2324
Wavelets = "29a6e085-ba6d-5f35-a997-948ac2efa89a"
2425

2526
[compat]
27+
ChainRulesCore = "1"
2628
DistributedArrays = "0.5, 0.6"
2729
FFTW = "1"
2830
Flux = "0.12"

Diff for: src/JOLI.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ using NFFT
5656
using Wavelets
5757
using PyCall
5858
using SpecialFunctions
59-
using SpecialFunctions.ChainRulesCore
59+
using ChainRulesCore
6060

6161
# what's imported from Base
6262
import Base.eltype
@@ -86,7 +86,7 @@ import DistributedArrays.SPMD: scatter
8686
import IterativeSolvers.Adivtype
8787

8888
# what's imported from ChainRulesCore
89-
import SpecialFunctions.ChainRulesCore.rrule
89+
import ChainRulesCore.rrule
9090

9191
# extra exported methods
9292
export deltype, reltype

0 commit comments

Comments
 (0)