Skip to content

Commit 41182eb

Browse files
committed
Implement iterative calculations in disorder
1 parent 3ab20b3 commit 41182eb

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/pypolymlp/_version.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212

1313
TYPE_CHECKING = False
1414
if TYPE_CHECKING:
15-
from typing import Tuple
16-
from typing import Union
15+
from typing import Tuple, Union
1716

1817
VERSION_TUPLE = Tuple[Union[int, str], ...]
1918
COMMIT_ID = Union[str, None]
@@ -28,7 +27,7 @@
2827
commit_id: COMMIT_ID
2928
__commit_id__: COMMIT_ID
3029

31-
__version__ = version = '0.15.1.post5'
32-
__version_tuple__ = version_tuple = (0, 15, 1, 'post5')
30+
__version__ = version = "0.15.2"
31+
__version_tuple__ = version_tuple = (0, 15, 2)
3332

34-
__commit_id__ = commit_id = 'g99c7daf6e'
33+
__commit_id__ = commit_id = "g99c7daf6e"

0 commit comments

Comments
 (0)