Docs: update python version to 3.13 (#15103)

### What problem does this PR solve?

1. update python version to 3.13
2. upgrade ormsgpack to 1.6.0

### Type of change

- [x] Refactoring

---------

Signed-off-by: Jin Hai <haijin.chn@gmail.com>
This commit is contained in:
Jin Hai
2026-05-21 19:09:19 +08:00
committed by GitHub
parent a725e114f9
commit 775ea55679
18 changed files with 19 additions and 19 deletions

View File

@@ -41,7 +41,7 @@ def encrypt_password(password_plain: str) -> str:
return base64.b64encode(encrypted_password).decode('utf-8')
except Exception as exc:
raise AuthException(
"Password encryption unavailable; install pycryptodomex (uv sync --python 3.12 --group test)."
"Password encryption unavailable; install pycryptodomex (uv sync --python 3.13 --group test)."
) from exc
return crypt(password_plain)