diff --git a/include/eigenpy/details.hpp b/include/eigenpy/details.hpp
index 6c8058dcb4db49bc99a815a6e57d331254d0d7de..ed7a3cb5cf50335d621429bfc7b386f980839711 100644
--- a/include/eigenpy/details.hpp
+++ b/include/eigenpy/details.hpp
@@ -8,6 +8,7 @@
 
 #include "eigenpy/fwd.hpp"
 
+#include <patchlevel.h> // For PY_MAJOR_VERSION
 #include <numpy/arrayobject.h>
 #include <iostream>
 
@@ -93,11 +94,14 @@ namespace eigenpy
     NumpyType()
     {
       pyModule = bp::import("numpy");
+#if PY_MAJOR_VERSION >= 3
+      // TODO I don't know why this Py_INCREF is necessary.
+      // Without it, the destructor of NumpyType SEGV sometimes.
+      Py_INCREF(pyModule.ptr());
+#endif
       
       NumpyMatrixObject = pyModule.attr("matrix");
       NumpyMatrixType = reinterpret_cast<PyTypeObject*>(NumpyMatrixObject.ptr());
-      NumpyAsMatrixObject = pyModule.attr("asmatrix");
-      NumpyAsMatrixType = reinterpret_cast<PyTypeObject*>(NumpyAsMatrixObject.ptr());
       NumpyArrayObject = pyModule.attr("ndarray");
       NumpyArrayType = reinterpret_cast<PyTypeObject*>(NumpyArrayObject.ptr());
       
@@ -109,7 +113,6 @@ namespace eigenpy
     
     // Numpy types
     bp::object NumpyMatrixObject; PyTypeObject * NumpyMatrixType;
-    bp::object NumpyAsMatrixObject; PyTypeObject * NumpyAsMatrixType;
     bp::object NumpyArrayObject; PyTypeObject * NumpyArrayType;
   };