diff --git a/docs/conf.py b/docs/conf.py index faaba85..8157eeb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -63,9 +63,9 @@ # built documents. # # The short X.Y version. -version = u'0.4' +version = u'0.5' # The full version, including alpha/beta/rc tags. -release = u'0.4.0' +release = u'0.5.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/hbp_validation_framework/utils.py b/hbp_validation_framework/utils.py index e1c42b7..f52aa92 100644 --- a/hbp_validation_framework/utils.py +++ b/hbp_validation_framework/utils.py @@ -140,7 +140,7 @@ def prepare_run_test_offline(username="", password=None, environment="production if client_obj: test_library = TestLibrary.from_existing(client_obj) else: - test_library = TestLibrary(username, environment=environment) + test_library = TestLibrary(username, password, environment=environment) if test_instance_id == "" and test_id == "" and test_alias == "": raise Exception("test_instance_id or test_id or test_alias needs to be provided for finding test.") diff --git a/setup.py b/setup.py index 9a5e943..892c65d 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def package_files(base_dir, directory): setup( name='hbp_validation_framework', - version='0.5.2', + version='0.5.3', packages=['hbp_validation_framework'], package_data={'': json_files}, url='https://github.com/HumanBrainProject/hbp-validation-client',