Skip to content

Commit

Permalink
Merge pull request #129 from pyiron/ase
Browse files Browse the repository at this point in the history
Move the ASE compatible interface from pyiron_lammps to pylammpsmpi
  • Loading branch information
jan-janssen authored Jul 24, 2023
2 parents 6473bc7 + 58438ed commit 3854910
Show file tree
Hide file tree
Showing 8 changed files with 806 additions and 14 deletions.
4 changes: 3 additions & 1 deletion .ci_support/environment-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ dependencies:
- myst-parser
- numpy
- mpi4py
- pympipool
- pympipool
- ase
- scipy
4 changes: 3 additions & 1 deletion .ci_support/environment-mpich.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ dependencies:
- mpich
- numpy =1.23.5
- mpi4py =3.1.4
- pympipool =0.5.6
- pympipool =0.5.6
- ase =3.22.1
- scipy =1.10.1
4 changes: 3 additions & 1 deletion .ci_support/environment-openmpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ dependencies:
- openmpi
- numpy =1.23.5
- mpi4py =3.1.4
- pympipool =0.5.6
- pympipool =0.5.6
- ase =3.22.1
- scipy =1.10.1
2 changes: 2 additions & 0 deletions binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ dependencies:
- lammps >=2021.05.27
- mpi4py =3.1.4
- pympipool =0.5.6
- ase =3.22.1
- scipy =1.10.1
6 changes: 6 additions & 0 deletions pylammpsmpi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,11 @@

from ._version import get_versions

try:
from pylammpsmpi.wrapper.ase import LammpsASELibrary
except ImportError:
pass


__version__ = get_versions()["version"]
del get_versions
Loading

0 comments on commit 3854910

Please sign in to comment.