From ab305f6cd6b66ef27181cf9d3cfac77b2e745472 Mon Sep 17 00:00:00 2001 From: Giulio Rossetti Date: Thu, 17 Sep 2020 16:48:08 +0200 Subject: [PATCH] :arrow_up: versioning --- docs/conf.py | 4 ++-- docs/index.rst | 2 +- setup.py | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 1400f173..163236c5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -90,9 +90,9 @@ def __getattr__(cls, name): # built documents. # # The short X.Y version. -version = u'0.1.8' +version = u'0.1.9' # The full version, including alpha/beta/rc tags. -release = u'0.1.8' +release = u'0.1.9' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index fc3d48f0..b9832b94 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -14,7 +14,7 @@ The implementations of all CD algorithms are inherited from existing projects, e ================ =================== ================== ========== =============== **Date** **Python Versions** **Main Author** **GitHub** **pypl** -|date| 3.7 `Giulio Rossetti`_ `Source`_ `Distribution`_ +|date| 3.7-3.8 `Giulio Rossetti`_ `Source`_ `Distribution`_ ================ =================== ================== ========== =============== diff --git a/setup.py b/setup.py index 95c52dfb..fb07e927 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ def get_requirements(remove_links=True): setup(name='cdlib', - version='0.1.8', + version='0.1.9', license='BSD-Clause-2', description='Community Discovery Library', url='https://github.com/GiulioRossetti/cdlib', @@ -70,6 +70,7 @@ def get_requirements(remove_links=True): ], keywords='community-discovery node-clustering edge-clustering complex-networks', install_requires=get_requirements(), + long_description=long_description, extras_require={ 'C': ["infomap==1.1.3", "python-igraph==0.7.1.post6", "leidenalg==0.7.0", "angel-cd==1.0.2", "wurlitzer>=1.0.2"],