From 2497484626ef2af70b5fad813333689320bf1e42 Mon Sep 17 00:00:00 2001 From: Alexander Hampel Date: Thu, 7 Jul 2022 09:33:16 -0400 Subject: [PATCH] start changelog for unstable and fix python test --- doc/ChangeLog.md | 6 ++++++ test/python/sigma_from_file.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/ChangeLog.md b/doc/ChangeLog.md index 4b3e0a89..1d1dc93e 100644 --- a/doc/ChangeLog.md +++ b/doc/ChangeLog.md @@ -2,6 +2,12 @@ # Changelog +## unstable + +* SumK requires now to pass a mesh on init to clarify the mesh on which it operates +* rename / unify name of `sumk.Sigma_imp_iw` and `sumk.Sigma_imp_w` -> `sumk.Sigma_imp` +* remove `iw_or_w` arguments + ## Version 3.1.0 DFTTools Version 3.1.0 is a release that diff --git a/test/python/sigma_from_file.py b/test/python/sigma_from_file.py index 30471924..fe5a54b1 100644 --- a/test/python/sigma_from_file.py +++ b/test/python/sigma_from_file.py @@ -50,6 +50,6 @@ Sigma_txt = BlockGf(name_list = a_list, block_list = g_list, make_copies=False) SK.set_Sigma([Sigma_txt]) SK.hdf_file = 'sigma_from_file.out.h5' -SK.save(['Sigma_imp_w']) +SK.save(['Sigma_imp']) assert_block_gfs_are_close(Sigma_txt, Sigma_hdf)