diff --git a/cornac/__init__.py b/cornac/__init__.py index abfa7e4dd..f077b229a 100644 --- a/cornac/__init__.py +++ b/cornac/__init__.py @@ -21,4 +21,6 @@ from . import utils # Also importable from root -from .experiment import Experiment \ No newline at end of file +from .experiment import Experiment + +__version__ = '1.1.2' \ No newline at end of file diff --git a/docs/source/conf.py b/docs/source/conf.py index c4b65f8ce..c0de7bc7c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = '1.1' # The full version, including alpha/beta/rc tags -release = '1.1.1' +release = '1.1.2' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index cee688822..f76d30c44 100644 --- a/setup.py +++ b/setup.py @@ -32,11 +32,12 @@ else: USE_CYTHON = True + with open('README.md', 'r') as fh: long_description = fh.read() -USE_OPENMP = True +USE_OPENMP = True def extract_gcc_binaries(): """Try to find GCC on OSX for OpenMP support.""" @@ -166,7 +167,7 @@ def extract_gcc_binaries(): setup( name='cornac', - version='1.1.1', + version='1.1.2', description='A Comparative Framework for Multimodal Recommender Systems', long_description=long_description, long_description_content_type='text/markdown', @@ -195,6 +196,7 @@ def extract_gcc_binaries(): 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'License :: OSI Approved :: Apache Software License', 'Topic :: Software Development', 'Topic :: Scientific/Engineering',