Skip to content

Commit 3838e39

Browse files
committed
Fix About object to recognize spec versions outside of supported list
1 parent 8590c03 commit 3838e39

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tincan/about.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def check_version(v):
5858
:type v: list of str or unicode | tuple of str or unicode
5959
:raises: ValueError
6060
"""
61-
if v in Version.supported:
61+
if v in ['1.0.1', '1.0.0', '0.95', '0.9']:
6262
return
6363

6464
# Construct the error message

0 commit comments

Comments
 (0)