From 0cd6893faafad4463e06b0339a0274b0168af158 Mon Sep 17 00:00:00 2001 From: Fede Date: Fri, 14 May 2021 14:47:33 -0500 Subject: [PATCH 1/2] add greater or equal deps --- README.md | 4 ++-- requirements.txt | 4 ++-- setup.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 88fb439..237e53e 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,8 @@ Pytorch implementation of the ES-RNN algorithm proposed by Smyl, winning submission of the M4 Forecasting Competition. The class wraps fit and predict methods to facilitate interaction with Machine Learning pipelines along with evaluation and data wrangling utility. Developed by [Autonlab](https://www.autonlab.org/)’s members at Carnegie Mellon University. ## Installation Prerequisites -* numpy==1.16.1 -* pandas==0.25.2 +* numpy>=1.16.1 +* pandas>=0.25.2 * pytorch>=1.3.1 ## Installation diff --git a/requirements.txt b/requirements.txt index 35869bc..f93f931 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -numpy==1.16.1 -pandas==0.25.2 +numpy>=1.16.1 +pandas>=0.25.2 torch>=1.3.1 diff --git a/setup.py b/setup.py index 7a91bba..2adfbe2 100644 --- a/setup.py +++ b/setup.py @@ -20,8 +20,8 @@ ], python_requires='>=3.6', install_requires =[ - "numpy==1.16.1", - "pandas==0.25.2", + "numpy>=1.16.1", + "pandas>=0.25.2", "torch>=1.3.1" ], entry_points=''' From 0bb2a031e78041b39d2459851091ad873b6039b0 Mon Sep 17 00:00:00 2001 From: Fede Date: Fri, 14 May 2021 14:48:34 -0500 Subject: [PATCH 2/2] upgrading version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2adfbe2..fd34cbd 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="ESRNN", - version="0.1.2", + version="0.1.3", author="Kin Gutierrez, Cristian Challu, Federico Garza", author_email="kdgutier@cs.cmu.edu, cchallu@andrew.cmu.edu, fede.garza.ramirez@gmail.com", description="Pytorch implementation of the ESRNN",