Skip to content

Commit

Permalink
fix install requires
Browse files Browse the repository at this point in the history
  • Loading branch information
kashif authored Feb 15, 2021
1 parent 86c89c4 commit bfbb223
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="pytorchts",
version="0.3.0",
version="0.3.1",
description="PyTorch Probabilistic Time Series Modeling framework",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
Expand All @@ -16,7 +16,7 @@
python_requires=">=3.6",
install_requires=[
"torch>=1.7.0",
"gluonts",
"gluonts @ git+https://github.com/awslabs/gluon-ts.git@master#egg=gluonts",
"holidays",
"numpy~=1.16",
"pandas~=1.1",
Expand All @@ -26,7 +26,6 @@
"tensorboard",
"wandb",
],
dependency_links=["git+https://github.com/awslabs/gluon-ts.git@master#egg=gluonts"],
test_suite="tests",
tests_require=["flake8", "pytest"],
)

0 comments on commit bfbb223

Please sign in to comment.