diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index fb5c9f92..f7d99612 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -15,8 +15,7 @@ A clear and concise description of what you expected to happen. **Environment (please complete the following information):** - aiokafka version (`python -c "import aiokafka; print(aiokafka.__version__)"`): - - kafka-python version (`python -c "import kafka; print(kafka.__version__)"`): - - Kafka Broker version (`kafka-topics.sh --version`): + - Kafka Broker version (`kafka-topics.sh --version`): - Other information (Confluent Cloud version, etc.): **Reproducible example** diff --git a/setup.py b/setup.py index 5ff8cc54..fc69494b 100644 --- a/setup.py +++ b/setup.py @@ -112,7 +112,6 @@ def build_extension(self, ext): install_requires = [ "async-timeout", - "kafka-python>=2.0.2", "packaging", ] @@ -173,7 +172,7 @@ def read_version(): }, download_url="https://pypi.python.org/pypi/aiokafka", license="Apache 2", - packages=["aiokafka"], + packages=["aiokafka", "kafka"], python_requires=">=3.8", install_requires=install_requires, extras_require=extras_require,