Skip to content

Commit da6ee13

Browse files
display dev versions when not released
1 parent 21d3764 commit da6ee13

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

src/openlifu/io/LIFUInterface.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import asyncio
44
import logging
5-
import re
65
from enum import Enum
76
from typing import Dict
87

@@ -400,7 +399,4 @@ def __exit__(self, exc_type, exc_value, traceback):
400399

401400
@staticmethod
402401
def get_sdk_version() -> str:
403-
version = openlifu.__version__
404-
# Match the version pattern X.Y.Z
405-
match = re.match(r'\d+\.\d+\.\d+', version)
406-
return match.group(0) if match else version
402+
return openlifu.__version__

0 commit comments

Comments
 (0)