From cbce65d9f2708f24f04bc272d10a47055a9cef94 Mon Sep 17 00:00:00 2001 From: Ben Gyori Date: Fri, 20 Sep 2019 17:38:38 -0400 Subject: [PATCH] Bump version and add full link to logo --- README.md | 2 +- doc/conf.py | 4 ++-- indra/__init__.py | 2 +- setup.py | 5 ++--- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 66d9c6b51c..344617bcbd 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # INDRA - + INDRA (Integrated Network and Dynamical Reasoning Assembler) is an automated model assembly system, originally developed for molecular systems biology and diff --git a/doc/conf.py b/doc/conf.py index 5257d1f35b..5847dedbe9 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -67,9 +67,9 @@ # built documents. # # The short X.Y version. -version = '1.13' +version = '1.14' # The full version, including alpha/beta/rc tags. -release = '1.13.0' +release = '1.14.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/indra/__init__.py b/indra/__init__.py index df5230a9b9..d5eb59ea49 100644 --- a/indra/__init__.py +++ b/indra/__init__.py @@ -2,7 +2,7 @@ import logging import os import sys -__version__ = '1.13.0' +__version__ = '1.14.1' __all__ = ['assemblers', 'belief', 'databases', 'explanation', 'literature', 'mechlinker', 'preassembler', 'sources', 'tools', 'util'] diff --git a/setup.py b/setup.py index 9aa606b467..f56b773210 100755 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ def main(): install_list = ['pysb>=1.3.0', 'objectpath', 'rdflib==4.2.1', 'requests>=2.11', 'lxml', 'ipython', 'future', 'networkx>=2', 'pandas', 'ndex2==2.0.1', 'jinja2', - 'protmapper>=0.0.13'] + 'protmapper>=0.0.14'] extras_require = { # Inputs and outputs @@ -42,7 +42,7 @@ def main(): for dep in deps}) setup(name='indra', - version='1.13.0', + version='1.14.1', description='Integrated Network and Dynamical Reasoning Assembler', long_description=long_description, long_description_content_type='text/markdown', @@ -93,7 +93,6 @@ def main(): 'Environment :: Console', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: BSD License', - 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 3', 'Topic :: Scientific/Engineering :: Bio-Informatics', 'Topic :: Scientific/Engineering :: Chemistry',