diff --git a/cornac/__init__.py b/cornac/__init__.py index d470ce6809c4a1a46f6369fa0cebc21b2a0ca8eb..12aed2ebb92d1398bf485f56332f29d3386bc428 100644 --- a/cornac/__init__.py +++ b/cornac/__init__.py @@ -23,4 +23,4 @@ from . import utils # Also importable from root from .experiment import Experiment -__version__ = '1.14.1' \ No newline at end of file +__version__ = '1.14.2' diff --git a/docs/source/conf.py b/docs/source/conf.py index 97f65da88377d6a97e696217bc40a6717593e427..4c2e00aa08a0bdd16ea17b9bf0071e714887b361 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,7 +26,7 @@ author = 'Preferred.AI' # The short X.Y version version = '1.14' # The full version, including alpha/beta/rc tags -release = '1.14.1' +release = '1.14.2' # -- General configuration --------------------------------------------------- @@ -170,4 +170,4 @@ texinfo_documents = [ # -- Options for intersphinx extension --------------------------------------- # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'https://docs.python.org/': None} \ No newline at end of file +intersphinx_mapping = {'https://docs.python.org/': None} diff --git a/setup.py b/setup.py index 179afcf520afe7929e041dd86bfa6df1e53ccad8..b7b6705043232b1b74f89db3284844a4a175e990 100644 --- a/setup.py +++ b/setup.py @@ -102,7 +102,7 @@ else: # required arguments for default gcc of OSX compile_args.extend(["-O2", "-stdlib=libc++", "-mmacosx-version-min=10.7"]) link_args.extend(["-O2", "-stdlib=libc++", "-mmacosx-version-min=10.7"]) - + if USE_OPENMP: compile_args.append("-fopenmp") link_args.append("-fopenmp") @@ -288,7 +288,7 @@ if USE_CYTHON: setup( name="cornac", - version="1.14.1", + version="1.14.2", description="A Comparative Framework for Multimodal Recommender Systems", long_description=long_description, long_description_content_type="text/markdown",