provide Path object as input to ConfigSettings
This commit is contained in:
parent
ecbde16575
commit
89dbd53805
@ -10,6 +10,8 @@ Release Notes
|
||||
Upcoming Release
|
||||
================
|
||||
|
||||
* bugfix: convert Strings to pathlib.Path objects as input to ConfigSettings
|
||||
|
||||
* Allow the use of more solvers in clustering (Xpress, COPT, Gurobi, CPLEX, SCIP, MOSEK).
|
||||
|
||||
* Enhanced support for choosing different weather years
|
||||
|
@ -427,7 +427,7 @@ def mock_snakemake(
|
||||
configfiles = [configfiles]
|
||||
|
||||
resource_settings = ResourceSettings()
|
||||
config_settings = ConfigSettings(configfiles=configfiles)
|
||||
config_settings = ConfigSettings(configfiles=map(Path, configfiles))
|
||||
workflow_settings = WorkflowSettings()
|
||||
storage_settings = StorageSettings()
|
||||
dag_settings = DAGSettings(rerun_triggers=[])
|
||||
|
Loading…
Reference in New Issue
Block a user