Skip to content

Commit bb30a28

Browse files
authored
Merge pull request #177 from ICAMS/fix_bug_solid
Fix bug solid
2 parents 19411b5 + 928582b commit bb30a28

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.4.2
2+
current_version = 1.4.3
33
commit = True
44
tag = True
55

calphy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from calphy.alchemy import Alchemy
55
from calphy.routines import MeltingTemp
66

7-
__version__ = "1.4.2"
7+
__version__ = "1.4.3"
88

99
def addtest(a,b):
1010
return a+b

calphy/input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
from ase.io import read, write
4949
import shutil
5050

51-
__version__ = "1.4.2"
51+
__version__ = "1.4.3"
5252

5353

5454
def _check_equal(val):

calphy/solid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ def run_minimal_averaging(self):
299299
lmp.command(f'pair_style {self.calc._pair_style_with_options[0]}')
300300

301301
#set up structure
302-
lmp = ph.create_structure(lmp, self.calc, species=self.calc.n_elements+self.calc._ghost_element_count)
302+
lmp = ph.create_structure(lmp, self.calc)
303303

304304
if self.calc.potential_file is None:
305305
lmp.command(f'pair_coeff {self.calc.pair_coeff[0]}')

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
packages=find_packages(include=['calphy', 'calphy.*']),
5454
test_suite='tests',
5555
url='https://github.com/ICAMS/calphy',
56-
version='1.4.2',
56+
version='1.4.3',
5757
zip_safe=False,
5858
entry_points={
5959
'console_scripts': [

0 commit comments

Comments
 (0)