Skip to content

Commit 991c256

Browse files
RahulHereRahulHere
authored andcommitted
Resolve auth loader package name to match pip native package
The auth loader was looking for 'gopher_orch_{platform}_{arch}' but the native package is named 'gopher_mcp_python_native_{platform}_{arch}'. Bump version to 0.1.2.1.
1 parent fe01b3c commit 991c256

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gopher_mcp_python/ffi/auth/loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def _get_platform_package_path() -> Optional[str]:
9494
if not platform_name:
9595
return None
9696

97-
package_name = f"gopher_orch_{platform_name}_{normalized_arch}"
97+
package_name = f"gopher_mcp_python_native_{platform_name}_{normalized_arch}"
9898

9999
# Try to find the package in site-packages
100100
for site_path in sys.path:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "gopher-mcp-python"
7-
version = "0.1.2"
7+
version = "0.1.2.1"
88
description = "Python SDK for Gopher MCP - AI Agent orchestration framework with native performance"
99
readme = "README.md"
1010
license = {text = "Apache-2.0"}

0 commit comments

Comments
 (0)