diff --git a/README.md b/README.md index 9ab665f..b69b24b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # bot-python Starter kit for Python bot for Automa -Please read the [Agent Development](https://docs.automa.app/agent-development) docs to understand how an [Automa][automa] bot works and how to develop it. +Please read the [Bot Development](https://docs.automa.app/bot-development) docs to understand how an [Automa][automa] bot works and how to develop it. * `/automa` endpoint is the receiver for the webhook from [Automa][automa] * `update` function in `app/update.py` is the logic responsible for updating code. diff --git a/pyproject.toml b/pyproject.toml index 93c3dae..fdb82d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,15 +7,15 @@ requires-python = ">=3.11" classifiers = ["Private :: Do Not Upload"] dependencies = [ - "automa-bot~=0.2.3", + "automa-bot~=0.3.0", "fastapi-cli~=0.0.7", "fastapi~=0.115.11", - "pydantic-settings~=2.8.1", + "pydantic-settings>=2.8.1,<3", "uvicorn~=0.34.0", ] [dependency-groups] -dev = ["httpx~=0.28.1", "pytest~=8.3.5", "ruff~=0.11.2"] +dev = ["httpx~=0.28.1", "pytest>=8.3.5,<9", "ruff~=0.11.2"] [tool.pytest.ini_options] pythonpath = "."