Not really an issue, just a potential option.
Currently the temperature property is marked as deprecated to deal with the feature being removed from the chip. See #30 and #32.
Another approach might be to query the version information registers:

and then raise exception if a newer rev:
if version > THE_LAST_VERSION_THAT_HAD_TEMPERATURE:
raise RuntimeError("Feature not supported for this chip version")