-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
27 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,28 @@ | ||
|
||
try: | ||
import pyboolnet | ||
except ImportError as e: | ||
print(e) | ||
print(""" | ||
print( | ||
""" | ||
pyboolnet can be installed via | ||
pip install git+https://github.com/hklarner/pyboolnet | ||
or, for a specific version, via, e.g., | ||
pip install git+https://github.com/hklarner/pyboolnet@3.0.5 | ||
""") | ||
pip install git+https://github.com/hklarner/pyboolnet@3.0.9 | ||
""" | ||
) | ||
raise | ||
|
||
from pystablemotifs import format | ||
from pystablemotifs import drivers | ||
from pystablemotifs import reduction | ||
from pystablemotifs import time_reversal | ||
from pystablemotifs import restrict_space | ||
from pystablemotifs import succession | ||
from pystablemotifs import random_boolean_networks | ||
from pystablemotifs import ( | ||
drivers, | ||
export, | ||
format, | ||
random_boolean_networks, | ||
reduction, | ||
restrict_space, | ||
succession, | ||
time_reversal, | ||
) | ||
from pystablemotifs.Attractor import Attractor | ||
from pystablemotifs.AttractorRepertoire import AttractorRepertoire | ||
from pystablemotifs import export | ||
|
||
__version__ = '3.0.4' | ||
__version__ = "3.0.6" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters