From 5caf11cffb862c304e4dcc3e0e90c8bdcdc08093 Mon Sep 17 00:00:00 2001 From: tqtg <tuantq.vnu@gmail.com> Date: Sat, 19 Feb 2022 11:16:53 +0800 Subject: [PATCH] Release v1.14.2 --- cornac/__init__.py | 2 +- docs/source/conf.py | 4 ++-- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cornac/__init__.py b/cornac/__init__.py index d470ce68..12aed2eb 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 97f65da8..4c2e00aa 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 179afcf5..b7b67050 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", -- GitLab