Skip to content

Commit

Permalink
Merge pull request #198 from pyiron/init
Browse files Browse the repository at this point in the history
Fix initialization
  • Loading branch information
jan-janssen authored Nov 7, 2023
2 parents 988f546 + 59ae8c3 commit 545950a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pympipool/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
from ._version import get_versions
from pympipool.mpi.executor import PyMPIExecutor
from pympipool.slurm.executor import PySlurmExecutor

try: # The PyFluxExecutor requires flux-core to be installed.
from pympipool.flux.executor import PyFluxExecutor
except ImportError:
pass

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

0 comments on commit 545950a

Please sign in to comment.