WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 3854910

Browse files
authored
Merge pull request #129 from pyiron/ase
Move the ASE compatible interface from pyiron_lammps to pylammpsmpi
2 parents 6473bc7 + 58438ed commit 3854910

File tree

8 files changed

+806
-14
lines changed

8 files changed

+806
-14
lines changed

.ci_support/environment-docs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ dependencies:
66
- myst-parser
77
- numpy
88
- mpi4py
9-
- pympipool
9+
- pympipool
10+
- ase
11+
- scipy

.ci_support/environment-mpich.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@ dependencies:
88
- mpich
99
- numpy =1.23.5
1010
- mpi4py =3.1.4
11-
- pympipool =0.5.6
11+
- pympipool =0.5.6
12+
- ase =3.22.1
13+
- scipy =1.10.1

.ci_support/environment-openmpi.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@ dependencies:
88
- openmpi
99
- numpy =1.23.5
1010
- mpi4py =3.1.4
11-
- pympipool =0.5.6
11+
- pympipool =0.5.6
12+
- ase =3.22.1
13+
- scipy =1.10.1

binder/environment.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ dependencies:
66
- lammps >=2021.05.27
77
- mpi4py =3.1.4
88
- pympipool =0.5.6
9+
- ase =3.22.1
10+
- scipy =1.10.1

pylammpsmpi/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,11 @@
44

55
from ._version import get_versions
66

7+
try:
8+
from pylammpsmpi.wrapper.ase import LammpsASELibrary
9+
except ImportError:
10+
pass
11+
12+
713
__version__ = get_versions()["version"]
814
del get_versions

0 commit comments

Comments
 (0)