Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Remove support for Python<3.6 #407

Merged
merged 1 commit into from
Nov 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 0 additions & 5 deletions requirements.txt
Expand Up @@ -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/
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -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,
Expand Down