You’re seeing a bug because Censored makes the data be float64 instead of int64, and then the logprob of Categorical (which the OrderedLogistic is) fails because it only works with integers.
However, the larger problem is that Categorical doesn’t have a logcdf method implemented yet, which Censored needs to work.