diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml
index 26cac21fa0223aa4584babc2b8d62494c441088f..50cfa3855b92298ceed7f6a2df41c826667cd8bc 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 0354a53ca6d634cc89d14c0bc9777272253dafef..eb8b9a44e7ee51a552a7d972a4c153eaa4d3b958 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.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 47498dbcff6c5e72fb91f433fa4ab594c2636cdb..fc0af1bb329018bc5aa2d648b56713931eb11faf 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.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 37deda7882cff36a072dced458df7866535e8f18..a97600395dc8b40f68306eb8e1f6365f1e554e1f 100644
--- a/setup.py
+++ b/setup.py
@@ -288,7 +288,7 @@ if USE_CYTHON:
 
 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",