From 2c1f739ae7b6bd04365f7747fe7a7b24c68525f3 Mon Sep 17 00:00:00 2001 From: Hugo Date: Sat, 28 Oct 2017 17:03:01 +0300 Subject: [PATCH 1/2] Python requires 3.5+ --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 819ec9c..5c4bd7d 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,9 @@ 'Programming Language :: Python :: Implementation :: PyPy' ), - install_requires=('appdirs', 'click', 'google-cloud-bigquery', 'tinydb', 'tinyrecord'), + install_requires=('appdirs', 'click', 'google-cloud-bigquery', 'tinydb', + 'tinyrecord'), + python_requires='>=3.5', # Works with pip>=9.0.0 tests_require=['pytest'], packages=find_packages(), From 936dd91287d49d8feb5110eb89266b75299c54a8 Mon Sep 17 00:00:00 2001 From: Ofek Lev Date: Sat, 28 Oct 2017 16:29:19 -0400 Subject: [PATCH 2/2] Update setup.py --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 5c4bd7d..94b7ffa 100644 --- a/setup.py +++ b/setup.py @@ -40,9 +40,8 @@ 'Programming Language :: Python :: Implementation :: PyPy' ), - install_requires=('appdirs', 'click', 'google-cloud-bigquery', 'tinydb', - 'tinyrecord'), - python_requires='>=3.5', # Works with pip>=9.0.0 + python_requires='>=3.5', + install_requires=('appdirs', 'click', 'google-cloud-bigquery', 'tinydb', 'tinyrecord'), tests_require=['pytest'], packages=find_packages(),