Skip to content

Commit ca5bdbb

Browse files
Merge pull request #139 from ArnoStrouwen/remdeps
remove unnecessary deps
2 parents 473b5a9 + ee2cadb commit ca5bdbb

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

Project.toml

+2-4
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@ version = "3.4.0"
66
[deps]
77
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
88
CommonSolve = "38540f10-b2f7-11e9-35d8-d573e4eb0ff2"
9-
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
109
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
1110
HCubature = "19dc6840-f33b-545b-b366-655c7e3ffd49"
1211
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1312
MonteCarloIntegration = "4886b29c-78c9-11e9-0a6e-41e1f4161f7b"
1413
QuadGK = "1fd47b50-473d-5c70-9696-f719f8f3bcdc"
1514
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
16-
ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267"
1715
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
1816
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"
1917
ZygoteRules = "700de1a5-db45-46bc-99cf-38207098b444"
@@ -27,13 +25,13 @@ HCubature = "1.4"
2725
MonteCarloIntegration = "0.0.1, 0.0.2, 0.0.3"
2826
QuadGK = "2.1"
2927
Reexport = "0.2, 1.0"
30-
ReverseDiff = "1"
3128
SciMLBase = "1.70"
3229
Zygote = "0.4.22, 0.5, 0.6"
3330
ZygoteRules = "0.2"
3431
julia = "1.6"
3532

3633
[extras]
34+
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
3735
FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41"
3836
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
3937
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
@@ -42,4 +40,4 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
4240
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
4341

4442
[targets]
45-
test = ["SciMLSensitivity", "StaticArrays", "FiniteDiff", "Pkg", "SafeTestsets", "Test"]
43+
test = ["SciMLSensitivity", "StaticArrays", "FiniteDiff", "Pkg", "SafeTestsets", "Test", "Distributions"]

src/Integrals.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module Integrals
22

33
using Reexport, MonteCarloIntegration, QuadGK, HCubature
44
@reexport using SciMLBase
5-
using Zygote, ReverseDiff, ForwardDiff, LinearAlgebra
5+
using Zygote, ForwardDiff, LinearAlgebra
66

77
import ChainRulesCore
88
import ChainRulesCore: NoTangent

0 commit comments

Comments
 (0)