From f5363001fa237da968a09183026722e69cf684d0 Mon Sep 17 00:00:00 2001 From: luoyuxia Date: Tue, 19 May 2026 20:41:39 +0800 Subject: [PATCH] docs: fix Python package name in RC verification guide The package name on PyPI is `pypaimon-rust`, not `pypaimon`. Co-Authored-By: Claude Opus 4.6 --- docs/src/release/verifying-a-release-candidate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/release/verifying-a-release-candidate.md b/docs/src/release/verifying-a-release-candidate.md index 424e8504..550a9dae 100644 --- a/docs/src/release/verifying-a-release-candidate.md +++ b/docs/src/release/verifying-a-release-candidate.md @@ -115,7 +115,7 @@ For any user-facing feature included in a release, we aim to ensure it is functi - **Python binding:** The RC is published to **TestPyPI**; install the client from TestPyPI and write your own test cases to verify: ```bash - pip install -i https://test.pypi.org/simple/ pypaimon==${RELEASE_VERSION} + pip install -i https://test.pypi.org/simple/ pypaimon-rust==${RELEASE_VERSION} ``` - **Go binding:** The RC is published as a Go module tag `bindings/go/v${RELEASE_VERSION}-rc${RC_NUM}`; see [Go Binding](https://paimon.apache.org/docs/rust/go-binding/) for usage. Add it to your Go project and write test cases to verify: