mathopt / DynamicOED.jl

Optimal experimental design of ODE and DAE systems in julia
https://mathopt.github.io/DynamicOED.jl/
MIT License
10 stars 0 forks source link

Patch Release #27

Open AlCap23 opened 5 months ago

AlCap23 commented 5 months ago

With the current version we restricted MTK properly. The initial release is not strictly bounded and has no good bound on ModelingToolkit, which results in compatability issues when installed in the wrong order.

This needs a patch release for v0.1.0.

In detail :

using Pkg
Pkg.activate(SOMEENV) 
Pkg.add(ModelingToolkit) 
Pkg.add(DynamicOED) 

will fail where

using Pkg
Pkg.activate(SOMEENV) 
Pkg.add(DynamicOED) 
Pkg.add(ModelingToolkit) 

will succeed.