apalan60 commented on code in PR #19264: URL: https://github.com/apache/kafka/pull/19264#discussion_r2050961741
########## tests/README.md: ########## @@ -166,6 +166,7 @@ https://cwiki.apache.org/confluence/display/KAFKA/tutorial+-+set+up+and+run+Kafk $ virtualenv -p python3 venv $ . ./venv/bin/activate $ python3 -m pip install --editable . + $ pip3 install setuptools Review Comment: @chia7712 Thank you for your review. I have updated ```setup.py``` to declare setuptools as a dependency. After making this change, I verified that ```setuptools``` is installed automatically by running: ``` cd kafka/tests \ && rm -rf venv \ && virtualenv -p python3 venv \ && . ./venv/bin/activate \ && python3 -m pip install --editable . ``` Then: ``` ➜ pip3 freeze | grep setuptools setuptools==78.1.0 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org