Skip to content

Commit

Permalink
Release v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tqtg committed Sep 18, 2019
1 parent ef864ed commit f6fe7cf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion cornac/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,6 @@
from . import utils

# Also importable from root
from .experiment import Experiment
from .experiment import Experiment

__version__ = '1.1.2'
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down Expand Up @@ -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',
Expand Down Expand Up @@ -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',
Expand Down

0 comments on commit f6fe7cf

Please sign in to comment.