This is an automated email from the ASF dual-hosted git repository. yong pushed a commit to branch branch-4.17 in repository https://gitbox.apache.org/repos/asf/bookkeeper.git
commit dd2be8f363e8565fa69ab3e711bd7bc039927d34 Author: Yong Zhang <[email protected]> AuthorDate: Wed Jan 21 17:50:19 2026 +0800 Fix the stream client python package name (#4703) --- ### Motivation ``` WARNING Error during upload. Retry with the --verbose option for more details. ERROR HTTPError: 400 Bad Request from https://upload.pypi.org/legacy/ Filename 'apache-bookkeeper-client-4.17.3.tar.gz' is invalid, should be 'apache_bookkeeper_client-4.17.3.tar.gz'. ``` (cherry picked from commit 3a5cf9d2fb35c758e804855ac30ad0044ee983a4) --- stream/clients/python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stream/clients/python/setup.py b/stream/clients/python/setup.py index 04f6087cc3..35ad585cd0 100644 --- a/stream/clients/python/setup.py +++ b/stream/clients/python/setup.py @@ -17,7 +17,7 @@ import setuptools # Package metadata. -name = 'apache-bookkeeper-client' +name = 'apache_bookkeeper_client' description = 'Apache BookKeeper client library' version = '4.17.3' # Should be one of:
