AsdfVersionMixin¶
- class asdf.versioning.AsdfVersionMixin[source]¶
Bases:
object
This mix-in is required in order to impose the total ordering that we want for
AsdfVersion
, rather than accepting the total ordering that is already provided byVersion
fromsemantic_version
. Defining these comparisons directly inAsdfVersion
and applyingtotal_ordering
there will not work sincetotal_ordering
only defines comparison operations if they do not exist already and the base classVersion
already defines these operations.