Hi, I am new to Julia. I am trying to run examples from NeuralPDE. Examples were working earlier, but today after I pulled the NeuralPDE repository, I am getting the following error:
ERROR: LoadError: Failed to precompile Quadrature [67601950-bd08-11e9-3c89-fd23fb4432d2] to /home/user/.julia/compiled/v1.7/Quadrature/jl_dBxI90. Stacktrace:
Can you share the error message? Quadrature was just renamed today so I wonder if that might have something to do with that, but I’d have to see the full message.
Oh I found and fixed it. I botched a bit of how the deprecation for the Quadrature → Integrals package renaming happened, so the old version didn’t dispatch properly (for reference, @deprecate QuadratureProblem IntegralProblem makes QuadratureProblem a function instead of a type so it doesn’t dispatch with ::QuadratureProblem ). I got that cleaned up and added a downstream test there, so if you update things should all be good. Cheers and thanks for the report.