Skip to content

Commit 7a83b86

Browse files
author
Sathvik Bhagavan
committed
build: bump compats of SciMLBase, Integrals and remove IntegralsCubature
1 parent 01995dd commit 7a83b86

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Project.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ AdvancedHMC = "0bf59076-c3b1-5ca4-86bd-e02cd72cde3d"
99
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
1010
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
1111
ComponentArrays = "b0b7db55-cfe3-40fc-9ded-d10e2dbeff66"
12+
Cubature = "667455a9-e2ce-5579-9412-b964f529a492"
1213
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
1314
DiffEqNoiseProcess = "77a26b50-5914-5dd7-bc55-306e6241c503"
1415
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
@@ -18,7 +19,6 @@ Flux = "587475ba-b771-5e3f-ad9e-33799f191a9c"
1819
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
1920
Functors = "d9f16b24-f501-4c13-a1f2-28368ffc5196"
2021
Integrals = "de52edbc-65ea-441a-8357-d3a637375a31"
21-
IntegralsCubature = "c31f79ba-6e32-46d4-a52f-182a8ac42a54"
2222
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
2323
LogDensityProblems = "6fdf6af0-433a-55f7-b3ed-c6c6e0b8df7c"
2424
Lux = "b2108857-7c20-44ae-9111-449ecde12c47"
@@ -45,6 +45,7 @@ Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"
4545
Adapt = "3, 4"
4646
AdvancedHMC = "0.5"
4747
ArrayInterface = "6, 7"
48+
Cubature = "1.5"
4849
CUDA = "4"
4950
ChainRulesCore = "1"
5051
ComponentArrays = "0.13.2, 0.14, 0.15"
@@ -56,8 +57,7 @@ DomainSets = "0.6"
5657
Flux = "0.13, 0.14"
5758
ForwardDiff = "0.10"
5859
Functors = "0.4"
59-
Integrals = "3.1"
60-
IntegralsCubature = "=0.2.2"
60+
Integrals = "4"
6161
LogDensityProblems = "2"
6262
Lux = "0.4, 0.5"
6363
MCMCChains = "6"
@@ -70,7 +70,7 @@ QuasiMonteCarlo = "0.3.2"
7070
RecursiveArrayTools = "2.31"
7171
Reexport = "1.0"
7272
RuntimeGeneratedFunctions = "0.5"
73-
SciMLBase = "1.91, 2"
73+
SciMLBase = "2"
7474
Statistics = "1"
7575
StochasticDiffEq = "6.13"
7676
SymbolicUtils = "1"

docs/Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ Roots = "f2b01f46-fcfa-551c-844a-d8ac1e96c665"
2020
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
2121

2222
[compat]
23+
Cubature = "1.5"
2324
DiffEqBase = "6.106"
2425
Documenter = "1"
2526
DomainSets = "0.6"
2627
Flux = "0.13, 0.14"
2728
Integrals = "3.3"
28-
IntegralsCubature = "=0.2.2"
2929
Lux = "0.4, 0.5"
3030
ModelingToolkit = "8.33"
3131
NeuralPDE = "5.3"

src/NeuralPDE.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ using Reexport, Statistics
1111
using Zygote, ForwardDiff, Random, Distributions
1212
using Adapt, DiffEqNoiseProcess, StochasticDiffEq
1313
using Optimization
14-
using Integrals, IntegralsCubature
14+
using Integrals, Cubature
1515
using QuasiMonteCarlo
1616
using RuntimeGeneratedFunctions
1717
using SciMLBase

test/NNPDE_tests.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Flux, NeuralPDE, Test
22
using Optimization, OptimizationOptimJL, OptimizationOptimisers
3-
using Integrals, IntegralsCubature
3+
using Integrals, Cubature
44
using QuasiMonteCarlo
55
import ModelingToolkit: Interval, infimum, supremum
66
using DomainSets

test/additional_loss_tests.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ using Optimization, OptimizationOptimJL, OptimizationOptimisers
33
using QuasiMonteCarlo, Random
44
import ModelingToolkit: Interval, infimum, supremum
55
using DomainSets
6-
using Integrals, IntegralsCubature
6+
using Integrals, Cubature
77
using OrdinaryDiffEq, ComponentArrays
88
import Lux
99
using ComponentArrays

0 commit comments

Comments
 (0)