Hello,
By adding PrecompileTools as a new dependency, a compat bound of the package was automatically added at the current stable version of it, corresponding to v1.3.3. But PrecompileTools.jl v1.3 only supports Julia v1.12. This means that we cannot install LinearMPC.jl on Julia <v1.12.
To correct this, you need to change the compat bound of PrecompileTools.jl to v1.2 and run your tests with this version of PrecompileTools. If you want to do this quickly locally, you can install lts with juliaup, set it as the default version and run LinearMPC.jl tests with Pkg.test(). It will run your tests with PrecompileTools v1.2.
Hello,
By adding
PrecompileToolsas a new dependency, a compat bound of the package was automatically added at the current stable version of it, corresponding to v1.3.3. ButPrecompileTools.jlv1.3 only supports Julia v1.12. This means that we cannot install LinearMPC.jl on Julia <v1.12.To correct this, you need to change the compat bound of
PrecompileTools.jlto v1.2 and run your tests with this version of PrecompileTools. If you want to do this quickly locally, you can installltswithjuliaup, set it as the default version and runLinearMPC.jltests withPkg.test(). It will run your tests withPrecompileToolsv1.2.