From e55dacf644bf3c1e3bdad30418742e9bedd26a5e Mon Sep 17 00:00:00 2001 From: Kashif Rasul Date: Wed, 10 Feb 2021 18:17:06 +0100 Subject: [PATCH] use dep link --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 113f45c..e26ccc3 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( python_requires=">=3.6", install_requires = [ 'torch>=1.7.0', - 'gluonts@git+https://github.com/awslabs/gluon-ts.git@master#egg=gluonts', + 'gluonts', 'holidays', 'numpy', 'pandas>=1.1', @@ -28,7 +28,9 @@ setup( 'tensorboard', 'wandb', ], - + dependency_links=[ + 'git+https://github.com/awslabs/gluon-ts.git@master#egg=gluonts' + ], test_suite='tests', tests_require = [ 'flake8',