File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed
Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 1.5.7
2+ current_version = 1.5.8
33commit = True
44tag = True
55
Original file line number Diff line number Diff line change 44from calphy .alchemy import Alchemy
55from calphy .routines import MeltingTemp
66
7- __version__ = "1.5.7 "
7+ __version__ = "1.5.8 "
88
99def addtest (a ,b ):
1010 return a + b
Original file line number Diff line number Diff line change 4949from ase .io import read , write
5050import shutil
5151
52- __version__ = "1.5.7 "
52+ __version__ = "1.5.8 "
5353
5454
5555def _check_equal (val ):
@@ -812,7 +812,10 @@ def create_identifier(self):
812812 elif np .isscalar (self .pressure ):
813813 ps = "%d" % (int (self .pressure ))
814814 else :
815- ps = "%d" % (int (self .pressure [0 ]))
815+ if isinstance (self .pressure [0 ], list ):
816+ ps = "%d" % (int (self .pressure [0 ][0 ]))
817+ else :
818+ ps = "%d" % (int (self .pressure [0 ]))
816819
817820 if hasattr (self , "_original_lattice" ) and self ._original_lattice :
818821 l = self ._original_lattice
Original file line number Diff line number Diff line change 5353 packages = find_packages (include = ['calphy' , 'calphy.*' ]),
5454 test_suite = 'tests' ,
5555 url = 'https://github.com/ICAMS/calphy' ,
56- version = '1.5.7 ' ,
56+ version = '1.5.8 ' ,
5757 zip_safe = False ,
5858 entry_points = {
5959 'console_scripts' : [
You can’t perform that action at this time.
0 commit comments