Fix deprecation warnings from pandas 1.3.0

closes #5251
This commit is contained in:
Matthias
2021-07-09 20:46:38 +02:00
parent 2f33b97b95
commit 6129c5ca9e
4 changed files with 6 additions and 5 deletions

View File

@@ -75,7 +75,7 @@ class HyperoptTools():
if fn:
HyperoptTools.export_params(params, strategy_name, fn.with_suffix('.json'))
else:
logger.warn("Strategy not found, not exporting parameter file.")
logger.warning("Strategy not found, not exporting parameter file.")
@staticmethod
def has_space(config: Dict[str, Any], space: str) -> bool: