You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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 :
will fail where
will succeed.
The text was updated successfully, but these errors were encountered: