3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-25 22:52:20 +02:00

start changelog for unstable and fix python test

This commit is contained in:
Alexander Hampel 2022-07-07 09:33:16 -04:00
parent 143fde4b2c
commit 2497484626
2 changed files with 7 additions and 1 deletions

View File

@ -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

View File

@ -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)