Skip to content

Commit fc09680

Browse files
authored
Merge pull request #70 from ICAMS/more_lammps_customisation
More lammps customisation
2 parents 7740e83 + 90d2da6 commit fc09680

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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.2.7
2+
current_version = 1.2.8
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.2.7"
7+
__version__ = "1.2.8"
88

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

calphy/phase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ def process_traj(self, filename, outfilename):
577577
files = ptp.split_trajectory(trajfile)
578578
conf = os.path.join(self.simfolder, outfilename)
579579

580-
ph.reset_timestep(conf, os.path.join(self.simfolder, "current.data"))
580+
ph.reset_timestep(conf, os.path.join(self.simfolder, "current.data"), init_commands=self.calc.md.init_commands)
581581

582582
os.remove(trajfile)
583583
for file in files:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
packages=find_packages(include=['calphy', 'calphy.*']),
5858
test_suite='tests',
5959
url='https://github.com/ICAMS/calphy',
60-
version='1.2.7',
60+
version='1.2.8',
6161
zip_safe=False,
6262
entry_points={
6363
'console_scripts': [

0 commit comments

Comments
 (0)