From a78a8d48b7bff1b7fced8da8076e1f58dec68354 Mon Sep 17 00:00:00 2001 From: Joseph Atkins-Turkish Date: Mon, 9 Nov 2020 20:32:15 -0800 Subject: [PATCH] chore: Remove support for Python<3.6 (#407) Signed-off-by: Joseph Atkins-Turkish --- requirements.txt | 5 ----- setup.py | 3 +-- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/requirements.txt b/requirements.txt index a950f9192..05836a95c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -28,11 +28,6 @@ mock>=2.0.0,<3.0 # Upstream url: https://pypi.python.org/pypi/pytest-mock pytest-mock>=1.1,<2.0 -# PEP 484 -# License: PSF -# Upstream url: https://github.com/python/typing -typing==3.6.4 - # Python client for ElasticSearch # License: Apache Software License # Upstream url: https://pypi.org/project/elasticsearch/ diff --git a/setup.py b/setup.py index 28805f44a..35ef4b2cf 100644 --- a/setup.py +++ b/setup.py @@ -74,9 +74,8 @@ packages=find_packages(exclude=['tests*']), dependency_links=[], install_requires=requirements, - python_requires='>=3.6,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*', + python_requires='>=3.6', extras_require={ - ':python_version=="2.7"': ['typing>=3.6'], # allow typehinting PY2 'all': all_deps, 'kafka': kafka, # To use with Kafka source extractor 'cassandra': cassandra,