diff --git a/autosubmit/autosubmit.py b/autosubmit/autosubmit.py index 1f128baf919aef1afe5718315945b0e97cb5d3f2..e9cbf07cea3bc64c9d73e477437103f089b765ab 100644 --- a/autosubmit/autosubmit.py +++ b/autosubmit/autosubmit.py @@ -4484,7 +4484,7 @@ class Autosubmit: as_conf = AutosubmitConfig(expid, BasicConfig, YAMLParserFactory()) # Get original configuration - as_conf.check_conf_files(running_time=False, only_experiment_data=True, no_log=True) + as_conf.reload(force_load=True,only_experiment_data=True) # Getting output type provided by the user in config, 'pdf' as default try: if not Autosubmit._copy_code(as_conf, expid, as_conf.experiment_data.get("PROJECT",{}).get("PROJECT_TYPE","none"), False): @@ -4494,7 +4494,7 @@ class Autosubmit: except BaseException as e: raise AutosubmitCritical("Error obtaining the project data, check the parameters related to PROJECT and GIT/SVN or LOCAL sections", code=7014,trace=str(e)) # Update configuration with the new config in the dist ( if any ) - as_conf.check_conf_files(running_time=False,force_load=True, only_experiment_data=False, no_log=False) + as_conf.check_conf_files(running_time=False,force_load=True, no_log=False) if len(as_conf.experiment_data.get("JOBS",{})) == 0 and "CUSTOM_CONFIG" in as_conf.experiment_data.get("DEFAULT",{}): raise AutosubmitCritical(f'Job list is empty\nCheck if there are YML files in {as_conf.experiment_data.get("DEFAULT","").get("CUSTOM_CONFIG","")}', code=7015) output_type = as_conf.get_output_type() diff --git a/requeriments.txt b/requeriments.txt index 0485c23344cf80782246b359975344226d9199bc..286a5d2014b679e92d365f63f3da0a5735ed2a01 100644 --- a/requeriments.txt +++ b/requeriments.txt @@ -1,4 +1,4 @@ -autosubmitconfigparser==1.0.30 +autosubmitconfigparser==1.0.31 paramiko>=2.9.2 bcrypt>=3.2 PyNaCl>=1.5.0 diff --git a/setup.py b/setup.py index 2a906e992f2df06796eceecfdabd36fb56e77425..7997af4ab274f5554aea091f432f1f982896b592 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ setup( url='http://www.bsc.es/projects/earthscience/autosubmit/', download_url='https://earth.bsc.es/wiki/doku.php?id=tools:autosubmit', keywords=['climate', 'weather', 'workflow', 'HPC'], - install_requires=['ruamel.yaml==0.17.21','ruamel.yaml.clib==0.2.7','autosubmitconfigparser==1.0.30','bcrypt>=3.2','packaging>19','six>=1.10.0','configobj>=5.0.6','argparse>=1.4.0','python-dateutil>=2.8.2','matplotlib<3.6','numpy<1.22','py3dotplus>=1.1.0','pyparsing>=3.0.7','paramiko>=2.9.2','mock>=4.0.3','portalocker>=2.3.2','networkx==2.6.3','requests>=2.27.1','bscearth.utils>=0.5.2','cryptography>=36.0.1','setuptools>=60.8.2','xlib>=0.21','pip>=22.0.3','pythondialog','pytest','nose','coverage','PyNaCl>=1.4.0','Pygments'], + install_requires=['ruamel.yaml==0.17.21','ruamel.yaml.clib==0.2.7','autosubmitconfigparser==1.0.31','bcrypt>=3.2','packaging>19','six>=1.10.0','configobj>=5.0.6','argparse>=1.4.0','python-dateutil>=2.8.2','matplotlib<3.6','numpy<1.22','py3dotplus>=1.1.0','pyparsing>=3.0.7','paramiko>=2.9.2','mock>=4.0.3','portalocker>=2.3.2','networkx==2.6.3','requests>=2.27.1','bscearth.utils>=0.5.2','cryptography>=36.0.1','setuptools>=60.8.2','xlib>=0.21','pip>=22.0.3','pythondialog','pytest','nose','coverage','PyNaCl>=1.4.0','Pygments'], classifiers=[ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.9",