Skip to content

Commit

Permalink
Python 3.8 support (#2088)
Browse files Browse the repository at this point in the history
  • Loading branch information
Photonios authored Jul 23, 2020
1 parent 316da74 commit bd557da
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ python:
- 2.7
- 3.4
- 3.7
- 3.8
- pypy2.7-6.0

env:
Expand Down
2 changes: 1 addition & 1 deletion docs/compatibility.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ Although kafka-python is tested and expected to work on recent broker versions,
not all features are supported. Specifically, authentication codecs, and
transactional producer/consumer support are not fully implemented. PRs welcome!

kafka-python is tested on python 2.7, 3.4, 3.7, and pypy2.7.
kafka-python is tested on python 2.7, 3.4, 3.7, 3.8 and pypy2.7.

Builds and tests via Travis-CI. See https://travis-ci.org/dpkp/kafka-python
8 changes: 4 additions & 4 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
flake8==3.4.1
pytest==3.10.0
pytest-cov==2.6.0
pytest==5.4.3
pytest-cov==2.10.0
docker-py==1.10.6
coveralls==1.5.1
Sphinx==1.6.4
Expand All @@ -9,8 +9,8 @@ xxhash==1.3.0
python-snappy==0.5.3
tox==3.5.3
mock==3.0.5
pylint==1.9.3
pytest-pylint==0.12.3
pylint==2.5.3
pytest-pylint==0.17.0
pytest-mock==1.10.0
sphinx-rtd-theme==0.2.4
crc32c==1.7
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ def run(cls):
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
]
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{26,27,34,35,36,37,py}, docs
envlist = py{26,27,34,35,36,37,38,py}, docs

[pytest]
testpaths = kafka test
Expand All @@ -8,10 +8,10 @@ log_format = %(created)f %(filename)-23s %(threadName)s %(message)s

[testenv]
deps =
pytest<4.0
pytest
pytest-cov
py{27,34,35,36,37,py}: pylint
py{27,34,35,36,37,py}: pytest-pylint
py{27,34,35,36,37,38,py}: pylint
py{27,34,35,36,37,38,py}: pytest-pylint
pytest-mock
mock
python-snappy
Expand Down

0 comments on commit bd557da

Please sign in to comment.