Skip to content

Commit 1b0b437

Browse files
georgevigeletteebrahimebrahim
authored andcommitted
display dev versions when not released
1 parent a9e8c3e commit 1b0b437

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, List
87

@@ -427,7 +426,4 @@ def __exit__(self, exc_type, exc_value, traceback):
427426

428427
@staticmethod
429428
def get_sdk_version() -> str:
430-
version = openlifu.__version__
431-
# Match the version pattern X.Y.Z
432-
match = re.match(r'\d+\.\d+\.\d+', version)
433-
return match.group(0) if match else version
429+
return openlifu.__version__

0 commit comments

Comments
 (0)