File tree 9 files changed +15
-9
lines changed
9 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 1
- __version__ = "2.0.0 "
1
+ __version__ = "2.0.1 "
Original file line number Diff line number Diff line change 23
23
24
24
import numpy as np
25
25
26
+ from abics import __version__
27
+
26
28
from abics .mc import RandomSampling
27
29
28
30
from abics .mc_mpi import (
@@ -480,7 +482,7 @@ def main_impl(tomlfile):
480
482
def main ():
481
483
now = datetime .datetime .now ()
482
484
if MPI .COMM_WORLD .Get_rank () == 0 :
483
- print ("Running abics_mlref (abICS v.2.0.0 ) on {}" .format (now ))
485
+ print ("Running abics_mlref (abICS v{} ) on {}" .format (__version__ , now ))
484
486
485
487
tomlfile = sys .argv [1 ] if len (sys .argv ) > 1 else "input.toml"
486
488
if MPI .COMM_WORLD .Get_rank () == 0 :
Original file line number Diff line number Diff line change 22
22
import numpy as np
23
23
import scipy .constants as constants
24
24
25
+ from abics import __version__
25
26
from abics .mc import CanonicalMonteCarlo , RandomSampling
26
27
from abics .mc_mpi import (
27
28
RX_MPI_init ,
@@ -386,7 +387,7 @@ def main():
386
387
now = datetime .datetime .now ()
387
388
388
389
if MPI .COMM_WORLD .Get_rank () == 0 :
389
- print ("Running abics_sampling (abICS v.2.0.0 ) on {}" .format (now ))
390
+ print ("Running abics_sampling (abICS v{} ) on {}" .format (__version__ , now ))
390
391
391
392
tomlfile = sys .argv [1 ] if len (sys .argv ) > 1 else "input.toml"
392
393
if MPI .COMM_WORLD .Get_rank () == 0 :
Original file line number Diff line number Diff line change 16
16
17
17
import sys , datetime
18
18
19
+ from abics import __version__
19
20
from abics .applications .latgas_abinitio_interface .params import DFTParams , TrainerParams
20
21
from abics .applications .latgas_abinitio_interface import aenet_trainer
21
22
from abics .applications .latgas_abinitio_interface import map2perflat
@@ -234,7 +235,7 @@ def main_impl(tomlfile):
234
235
235
236
def main ():
236
237
now = datetime .datetime .now ()
237
- print ("Running abics_train (abICS v.2.0.0 ) on {}" .format (now ))
238
+ print ("Running abics_train (abICS v{} ) on {}" .format (__version__ , now ))
238
239
tomlfile = sys .argv [1 ] if len (sys .argv ) > 1 else "input.toml"
239
240
print ("-Reading input from: {}" .format (tomlfile ))
240
241
main_impl (tomlfile )
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ abICS is developed by the following members.
36
36
Version information
37
37
------------------------------------------
38
38
39
+ - ver. 2.0.1 : 2022/06/24.
39
40
- ver. 2.0 : 2022/06/24.
40
41
- ver. 1.0 : 2020/05/01.
41
42
- ver. 1.0-beta : 2020/03/31.
Original file line number Diff line number Diff line change 58
58
# built documents.
59
59
#
60
60
# The short X.Y version.
61
- version = u'2.0.0 '
61
+ version = u'2.0'
62
62
# The full version, including alpha/beta/rc tags.
63
- release = u'2.0.0 '
63
+ release = u'2.0.1 '
64
64
65
65
# The language for content autogenerated by Sphinx. Refer to documentation
66
66
# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ abICSは以下のメンバーで開発しています.
37
37
バージョン履歴
38
38
------------------------------------------
39
39
40
+ - ver.2.0.1 : 2022/11/04.
40
41
- ver.2.0 : 2022/06/24.
41
42
- ver.1.0 : 2020/05/01.
42
43
- ver.1.0-beta : 2020/03/31.
Original file line number Diff line number Diff line change 55
55
# built documents.
56
56
#
57
57
# The short X.Y version.
58
- version = u'2.0.0 '
58
+ version = u'2.0'
59
59
# The full version, including alpha/beta/rc tags.
60
- release = u'2.0.0 '
60
+ release = u'2.0.1 '
61
61
62
62
# The language for content autogenerated by Sphinx. Refer to documentation
63
63
# for a list of supported languages.
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " abics"
3
- version = " 2.0.0 "
3
+ version = " 2.0.1 "
4
4
description = " ab-Initio Configuration Sampling tool kit"
5
5
authors = [
" abICS developers <[email protected] >" ]
6
6
license = " GPL-3.0-or-later"
You can’t perform that action at this time.
0 commit comments