Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/copilot-bot.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CopilotBot is a Microbots agent that delegates the entire agent loop to the **Gi
## Prerequisites

- **Docker** — a running Docker daemon
- **Python 3.10+**
- **Python 3.11 or 3.12** (Python 3.13 is not currently supported)
- **One of the following** for authentication:
- A GitHub Copilot subscription (for native Copilot auth), **or**
- API credentials for any OpenAI-compatible, Azure OpenAI, or Anthropic endpoint (BYOK — no Copilot subscription needed)
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.11"
requires-python = ">=3.11,<3.13"

[project.optional-dependencies]
ghcp = ["github-copilot-sdk"]
Expand All @@ -36,4 +37,4 @@ where = ["src"]

[project.urls]
"Source Repo" = "https://github.com/microsoft/minions"
Issues = "https://github.com/microsoft/minions/issues"
Issues = "https://github.com/microsoft/minions/issues"