From 434c67c1389f73889e6c9bd5e9faf60f7e4f1d22 Mon Sep 17 00:00:00 2001 From: Fede Date: Wed, 15 Apr 2020 15:11:14 -0500 Subject: [PATCH] adding python version to setup --- README.md | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6dbd0c7..29c3b17 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ particular_published_date = CovidMX(source='Serendipia', date='2020-04-10', date # Release information -## 0.2.2 (Current version) +## 0.2.3 (Current version) - Now works with `python3.5+`. - Using `clean=True` returns encoded data instead of decoded data without cleaning columns (as works in `0.2.0` and `0.2.1`). diff --git a/setup.py b/setup.py index 550df96..7907035 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="covidmx", - version="0.2.2", + version="0.2.3", author="Federico Garza", author_email="fede.garza.ramirez@gmail.com", description="Python API to get information about COVID-19 in México.", @@ -18,7 +18,7 @@ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], - python_requires='>=3.7', + python_requires='>=3.5', install_requires = [ "more-itertools>=6.0.0", "pandas==0.25.2",