Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.4.2
current_version = 1.4.3
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion calphy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from calphy.alchemy import Alchemy
from calphy.routines import MeltingTemp

__version__ = "1.4.2"
__version__ = "1.4.3"

def addtest(a,b):
return a+b
2 changes: 1 addition & 1 deletion calphy/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
from ase.io import read, write
import shutil

__version__ = "1.4.2"
__version__ = "1.4.3"


def _check_equal(val):
Expand Down
2 changes: 1 addition & 1 deletion calphy/solid.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def run_minimal_averaging(self):
lmp.command(f'pair_style {self.calc._pair_style_with_options[0]}')

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

if self.calc.potential_file is None:
lmp.command(f'pair_coeff {self.calc.pair_coeff[0]}')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
packages=find_packages(include=['calphy', 'calphy.*']),
test_suite='tests',
url='https://github.com/ICAMS/calphy',
version='1.4.2',
version='1.4.3',
zip_safe=False,
entry_points={
'console_scripts': [
Expand Down
Loading