Skip to content

Commit

Permalink
use dcorelib instead of TRIQS by default
Browse files Browse the repository at this point in the history
  • Loading branch information
yomichi committed Aug 22, 2024
1 parent 68eba3a commit 56ec239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dcore/_dispatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import importlib.util


if 'DCORE_TRIQS_COMPAT' in os.environ and int(os.environ['DCORE_TRIQS_COMPAT']) == 1:
if int(os.environ.get('DCORE_TRIQS_COMPAT', 1)) == 1:
TRIQS_COMPAT = True
from dcorelib.triqs_compat import *
from dcorelib.triqs_compat import h5
Expand Down

0 comments on commit 56ec239

Please sign in to comment.