Skip to content

Commit

Permalink
chore: Remove support for Python<3.6 (#407)
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph Atkins-Turkish <jatkins-turkish@brex.com>
  • Loading branch information
Joseph Atkins-Turkish authored Nov 10, 2020
1 parent d91c0c5 commit a78a8d4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
5 changes: 0 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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

0 comments on commit a78a8d4

Please sign in to comment.