diff --git a/.circleci/config.yml b/.circleci/config.yml index 34c3f05cd25..2046949b941 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3380,7 +3380,7 @@ jobs: pip install "langchain_mcp_adapters==0.0.5" pip install "langchain_openai==0.2.1" pip install "langgraph==0.3.18" - pip install "fastuuid==0.13.5" + pip install "fastuuid==0.14.0" pip install -r requirements.txt - run: name: Install dockerize diff --git a/requirements.txt b/requirements.txt index 99139ffa10c..c36e2e7bc25 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,8 +13,8 @@ backoff==2.2.1 # server dep pyyaml==6.0.2 # server dep uvicorn==0.31.1 # server dep gunicorn==23.0.0 # server dep -fastuuid==0.13.5 # for uuid4 -uvloop==0.21.0 # uvicorn dep, gives us much better performance under load +fastuuid==0.14.0 # for uuid4 (0.14.0 has Python 3.14 wheels) +uvloop==0.21.0 ; python_version < "3.14" # uvicorn dep - no Python 3.14 wheels, falls back to asyncio boto3==1.40.53 # aws bedrock/sagemaker calls (has bedrock-agentcore-control, compatible with aioboto3) redis==5.2.1 # redis caching redisvl @ git+https://github.com/redis/redis-vl-python@e571e7506cce27048444de9b489baee5d257b3d3 # redis semantic caching - Python 3.14 support via PR #468 (temporary until official release)