Warning installing OrdinaryDiffEq

When installing OrdinaryDiffEq v6.88.0 I get the following warning:

┌ OrdinaryDiffEq
│  WARNING: could not import OrdinaryDiffEqCore.strip_interpolation into OrdinaryDiffEq

Furthermore there seams to be a precompilation issue:

Any idea?

That should be fixed on the latest core. I might’ve missed a patch.

You can reproduce the issue using this script:

#!/bin/bash -eu
rm -rf /tmp/testdepot
mkdir /tmp/testdepot
rm -rf /tmp/test
mkdir /tmp/test
cd /tmp/test
export JULIA_DEPOT_PATH=/tmp/testdepot 
julia --project="." -e "using Pkg; pkg\"add OrdinaryDiffEq\"; using OrdinaryDiffEq;"
cd ..

The new OrdinaryDiffEqCore should do it.

1 Like

On issue is fixed, but I still get:

 OrdinaryDiffEq
│  WARNING: could not import OrdinaryDiffEqCore.strip_interpolation into OrdinaryDiffEq

Yup and that’s getting OrdinaryDiffEq v6.88.1 and that should be the end of the split PRs :crossed_fingers:

1 Like