Change Type
Addition
Proposed Changes
Hi
I had some challenges to run build the MCP server on Ubuntu24 , thought to share that.
The pyproject.toml file indicates :
requires-python = ">=3.13"
This results installation of Python 3.14 which is not fully supported by packages that are required by this MCP server. I had a lot of time installing Arrow, CUDA , etc and finally did not work.
I made the following change in pyproject.toml file :
requires-python = "==3.13"
After that , "uv sync" worked like a charm and installed all packages and I could run the MCP server.
Best Regards
Reza toghraee
Change Type
Addition
Proposed Changes
Hi
I had some challenges to run build the MCP server on Ubuntu24 , thought to share that.
The pyproject.toml file indicates :
requires-python = ">=3.13"
This results installation of Python 3.14 which is not fully supported by packages that are required by this MCP server. I had a lot of time installing Arrow, CUDA , etc and finally did not work.
I made the following change in pyproject.toml file :
requires-python = "==3.13"
After that , "uv sync" worked like a charm and installed all packages and I could run the MCP server.
Best Regards
Reza toghraee