Skip to content

Commit

Permalink
version increment
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrozum committed Dec 15, 2023
1 parent 8899e65 commit 6f80aab
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 24 deletions.
29 changes: 16 additions & 13 deletions pystablemotifs/__init__.py
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"
22 changes: 11 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@

setup(
name="pystablemotifs",
version='3.0.4',
version="3.0.6",
author="Jordan Rozum",
author_email="jcr52@psu.edu",
description="Python package for analyzing Boolean Netowrk",
url="https://github.com/jcrozum/pystablemotifs",
license='MIT',
python_requires='>=3.5',
packages=['pystablemotifs'],
license="MIT",
python_requires=">=3.5",
packages=["pystablemotifs"],
install_requires=[
"pyboolnet @ git+https://github.com/hklarner/pyboolnet@3.0.9",
"networkx >= 2.4.0",
"sympy >= 1.5.1",
"pandas >= 1.0.0",
"numpy >= 1.19.2",
"matplotlib >= 3.2.1"
]
"pyboolnet @ git+https://github.com/hklarner/pyboolnet@3.0.11",
"networkx >= 2.4.0",
"sympy >= 1.5.1",
"pandas >= 1.0.0",
"numpy >= 1.19.2",
"matplotlib >= 3.2.1",
],
)

0 comments on commit 6f80aab

Please sign in to comment.