Skip to content

Commit

Permalink
Merge pull request #257 from sarthakpati/version_update
Browse files Browse the repository at this point in the history
  • Loading branch information
Geeks-Sid committed Dec 14, 2021
2 parents 639f4df + 79257e4 commit b0dad1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GANDLF/utils/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def version_check(version_from_config, version_to_check):
Returns:
bool: If the version of the config file is compatible with the version of the code.
"""
version_to_check_int = parse_version(version_to_check)
version_to_check_int = parse_version(version_to_check)
min_ver = parse_version(version_from_config["minimum"])
max_ver = parse_version(version_from_config["maximum"])
if (min_ver > version_to_check_int) or (max_ver < version_to_check_int):
Expand Down
2 changes: 1 addition & 1 deletion GANDLF/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
__version__ = "0.0.13-dev"
__version__ = "0.0.13"

0 comments on commit b0dad1d

Please sign in to comment.