From e1000f3b42e807b9fc47da30392f7f9a765a3382 Mon Sep 17 00:00:00 2001 From: Bing Xu Date: Tue, 5 Feb 2019 19:44:56 -0800 Subject: [PATCH] [Python dep] Add missing dep pkg for relay (#2568) --- python/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/setup.py b/python/setup.py index 71d61a52e3494..4127892925ef8 100644 --- a/python/setup.py +++ b/python/setup.py @@ -129,6 +129,7 @@ def is_pure(self): install_requires=[ 'numpy', 'decorator', + 'attrs', ], packages=find_packages(), distclass=BinaryDistribution,