From fa10127f970bbc8098afe447301a38eebc60ea1e Mon Sep 17 00:00:00 2001 From: tqtg Date: Mon, 12 Jul 2021 15:38:56 +0800 Subject: [PATCH] Release v1.13.3 --- .github/workflows/python-publish.yml | 2 +- cornac/__init__.py | 2 +- docs/source/conf.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 26cac21fa..50cfa3855 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -42,7 +42,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install --only-binary=numpy,scipy numpy scipy Cython wheel + python -m pip install --only-binary=numpy,scipy numpy~=1.19.0 scipy Cython wheel - name: Build wheels run: python setup.py bdist_wheel diff --git a/cornac/__init__.py b/cornac/__init__.py index 0354a53ca..eb8b9a44e 100644 --- a/cornac/__init__.py +++ b/cornac/__init__.py @@ -23,4 +23,4 @@ # Also importable from root from .experiment import Experiment -__version__ = '1.13.2' \ No newline at end of file +__version__ = '1.13.3' \ No newline at end of file diff --git a/docs/source/conf.py b/docs/source/conf.py index 47498dbcf..fc0af1bb3 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = '1.13' # The full version, including alpha/beta/rc tags -release = '1.13.2' +release = '1.13.3' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 37deda788..a97600395 100644 --- a/setup.py +++ b/setup.py @@ -288,7 +288,7 @@ def extract_gcc_binaries(): setup( name="cornac", - version="1.13.2", + version="1.13.3", description="A Comparative Framework for Multimodal Recommender Systems", long_description=long_description, long_description_content_type="text/markdown",