You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently versions can be represented as either tuples or strings:
version= (1, 0, 0)
version='1.1.0'
However, this causes issues when performing version comparisons, so generally all versions need to be converted to one format or the other. Instead, it might be helpful to have an AsdfVersion class that allows for transparent comparisons of all different version formats:
Currently versions can be represented as either tuples or strings:
However, this causes issues when performing version comparisons, so generally all versions need to be converted to one format or the other. Instead, it might be helpful to have an
AsdfVersion
class that allows for transparent comparisons of all different version formats:The text was updated successfully, but these errors were encountered: