Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@ DiffEqNoiseProcess = "77a26b50-5914-5dd7-bc55-306e6241c503"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a"
RandomNumbers = "e6cf234a-135c-5ec9-84dd-332b85af5143"
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"

[compat]
DiffEqBase = "6.133.1, 7"
DiffEqNoiseProcess = "5.13.0"
Distributions = "0.25.100"
Markdown = "1"
RandomNumbers = "1.5.3"
SafeTestsets = "0.1, 1"
SciMLBase = "3.28.1"
SciMLTesting = "1"
Statistics = "1"
StochasticDiffEq = "6.65.0, 7"
Expand Down
3 changes: 2 additions & 1 deletion src/DiffEqFinancial.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
module DiffEqFinancial

using DiffEqBase: AbstractSDEProblem, CallbackSet, SDEFunction, SDEProblem
using DiffEqBase: CallbackSet, SDEFunction, SDEProblem
using DiffEqNoiseProcess: CorrelatedWienerProcess!, NoiseProcess
using Distributions: NoncentralChisq
using Markdown: @doc_str
using SciMLBase: AbstractSDEProblem

import RandomNumbers: Xorshifts

Expand Down
6 changes: 3 additions & 3 deletions test/qa/Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[deps]
AllocCheck = "9b6a8646-10ed-4001-bbdc-1d2f46dfbb1a"
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
DiffEqFinancial = "5a0ffddc-d203-54b0-88ba-2c03c0fc2e67"
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
SciMLTesting = "09d9d899-5365-40a9-917a-5f67fddea283"
Expand All @@ -12,10 +12,10 @@ DiffEqFinancial = {path = "../.."}

[compat]
AllocCheck = "0.2"
Aqua = "0.8"
DiffEqFinancial = "2.10.0"
ExplicitImports = "1.14"
JET = "0.9, 0.10, 0.11"
SafeTestsets = "0.1, 1"
SciMLTesting = "1"
SciMLTesting = "1.6"
Test = "1.10"
julia = "1.10"
8 changes: 0 additions & 8 deletions test/qa/explicit_imports.jl

This file was deleted.

87 changes: 0 additions & 87 deletions test/qa/jet_tests.jl

This file was deleted.

8 changes: 8 additions & 0 deletions test/qa/qa.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
using SciMLTesting, DiffEqFinancial, Test
using JET

run_qa(
DiffEqFinancial;
explicit_imports = true,
aqua_kwargs = (; deps_compat = (; check_extras = false)),
)
Loading