Skip to content

Commit

Permalink
Remove kafka-python from dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ods committed Oct 21, 2023
1 parent fb75b10 commit 3f3c169
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ def build_extension(self, ext):

install_requires = [
"async-timeout",
"kafka-python>=2.0.2",
"packaging",
]

Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 3f3c169

Please sign in to comment.