Skip to content

Commit b0dad1d

Browse files
authored
Merge pull request #257 from sarthakpati/version_update
2 parents 639f4df + 79257e4 commit b0dad1d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

GANDLF/utils/generic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def version_check(version_from_config, version_to_check):
9999
Returns:
100100
bool: If the version of the config file is compatible with the version of the code.
101101
"""
102-
version_to_check_int = parse_version(version_to_check)
102+
version_to_check_int = parse_version(version_to_check)
103103
min_ver = parse_version(version_from_config["minimum"])
104104
max_ver = parse_version(version_from_config["maximum"])
105105
if (min_ver > version_to_check_int) or (max_ver < version_to_check_int):

GANDLF/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env python3
22
# -*- coding: UTF-8 -*-
3-
__version__ = "0.0.13-dev"
3+
__version__ = "0.0.13"

0 commit comments

Comments
 (0)