You added casting methods for `haven_labelled` in #522 but forgot about `haven_labelled_spss`. See below (this is in 2.3.1): ```r library(haven) x <- labelled(1:5) vctrs::vec_cast(x, double()) x <- labelled_spss(1:5) vctrs::vec_cast(x, double()) ```