Skip to content

Commit bfbb223

Browse files
authored
fix install requires
1 parent 86c89c4 commit bfbb223

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="pytorchts",
5-
version="0.3.0",
5+
version="0.3.1",
66
description="PyTorch Probabilistic Time Series Modeling framework",
77
long_description=open("README.md").read(),
88
long_description_content_type="text/markdown",
@@ -16,7 +16,7 @@
1616
python_requires=">=3.6",
1717
install_requires=[
1818
"torch>=1.7.0",
19-
"gluonts",
19+
"gluonts @ git+https://github.com/awslabs/gluon-ts.git@master#egg=gluonts",
2020
"holidays",
2121
"numpy~=1.16",
2222
"pandas~=1.1",
@@ -26,7 +26,6 @@
2626
"tensorboard",
2727
"wandb",
2828
],
29-
dependency_links=["git+https://github.com/awslabs/gluon-ts.git@master#egg=gluonts"],
3029
test_suite="tests",
3130
tests_require=["flake8", "pytest"],
3231
)

0 commit comments

Comments
 (0)