We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86c89c4 commit bfbb223Copy full SHA for bfbb223
1 file changed
setup.py
@@ -2,7 +2,7 @@
2
3
setup(
4
name="pytorchts",
5
- version="0.3.0",
+ version="0.3.1",
6
description="PyTorch Probabilistic Time Series Modeling framework",
7
long_description=open("README.md").read(),
8
long_description_content_type="text/markdown",
@@ -16,7 +16,7 @@
16
python_requires=">=3.6",
17
install_requires=[
18
"torch>=1.7.0",
19
- "gluonts",
+ "gluonts @ git+https://github.com/awslabs/gluon-ts.git@master#egg=gluonts",
20
"holidays",
21
"numpy~=1.16",
22
"pandas~=1.1",
@@ -26,7 +26,6 @@
26
"tensorboard",
27
"wandb",
28
],
29
- dependency_links=["git+https://github.com/awslabs/gluon-ts.git@master#egg=gluonts"],
30
test_suite="tests",
31
tests_require=["flake8", "pytest"],
32
)
0 commit comments