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
AsdfSpec` provides unexpected version comparisons (because of it's roots in packaging):
v1=AsdfVersion('1.7.0.dev')
v2=AsdfVersion('1.7.0')
assertv1<v2# as expectedspec=AsdfSpec('<1.7.0')
assertspec.match(v1) # fails as spec does not consider pre-releases
The text was updated successfully, but these errors were encountered:
AsdfSpec` provides unexpected version comparisons (because of it's roots in packaging):
The text was updated successfully, but these errors were encountered: