py: Add MICROPY_ENABLE_FLOAT around a float specific piece of code.
diff --git a/py/runtime.c b/py/runtime.c
index b1027de..ea96ca9 100644
--- a/py/runtime.c
+++ b/py/runtime.c
@@ -616,10 +616,12 @@
                 return MP_OBJ_NEW_SMALL_INT(lhs_val);
             }
             return mp_obj_new_int(lhs_val);
+#if MICROPY_ENABLE_FLOAT
         } else if (MP_OBJ_IS_TYPE(rhs, &float_type)) {
             return mp_obj_float_binary_op(op, lhs_val, rhs);
         } else if (MP_OBJ_IS_TYPE(rhs, &complex_type)) {
             return mp_obj_complex_binary_op(op, lhs_val, 0, rhs);
+#endif
         }
     }