If I upgrade to StatsBase 0.33.19 the problem disappears. The offending line seems to be https://github.com/FixedEffects/FixedEffectModels.jl/blob/master/src/fit.jl#L389 . Here, StatsBase.vcov is called but this is now called StatsAPI.vcov. I guess more recent StatsBase re-exports vcov from StatsAPI. So either the StatsBase compat entry should be updated, or this line should be changed to StatsAPI.vcov.
When using FixedEffectModels 1.7.0 with StatsBase 0.33.14, I get the following error:
If I upgrade to StatsBase 0.33.19 the problem disappears. The offending line seems to be https://github.com/FixedEffects/FixedEffectModels.jl/blob/master/src/fit.jl#L389 . Here,
StatsBase.vcov
is called but this is now calledStatsAPI.vcov
. I guess more recent StatsBase re-exportsvcov
from StatsAPI. So either theStatsBase
compat entry should be updated, or this line should be changed to StatsAPI.vcov.MWE: https://gist.github.com/mattwigway/f10dbc682506b1ce4a65b395c5dd0dd4