Skip to content
Merged
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/src/content/docs/guides/agent-workflows.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ apm runtime list
|---------|-------------|-------|
| Copilot CLI | Node.js v22+, npm v10+ | Recommended. MCP config at `~/.copilot/` |
| Codex | Node.js | Set `GITHUB_TOKEN` for GitHub Models support |
| LLM | Python 3.9+ | Supports multiple model providers |
| LLM | Python 3.10+ | Supports multiple model providers |

**Copilot CLI** is the recommended runtime — it requires no API keys for installation and integrates with GitHub Copilot directly.

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/introduction/key-concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ description: Project overview and architecture
Command-line tool for AI-powered development workflows.

## Key Technologies
- Python 3.9+ with Click framework
- Python 3.10+ with Click framework
- YAML frontmatter for configuration
- Rich library for terminal output

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "apm-cli"
version = "0.7.7"
description = "MCP configuration tool"
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
Copy link

Copilot AI Mar 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

requires-python is now >=3.10, but the installer script still checks for and advertises Python 3.9+ (install.sh sets REQUIRED_VERSION="3.9" and prints "Python 3.9+ detected"). On systems with only Python 3.9, the installer may route to pip install apm-cli and then fail due to the new package requirement. Update install.sh (version check + user-facing messages) to require 3.10+ to match this change.

This issue also appears in the following locations of the same file:

  • line 10
  • line 10

Copilot uses AI. Check for mistakes.
license = {file = "LICENSE"}
authors = [
{name = "Daniel Meppiel", email = "user@example.com"}
Expand Down
Loading
Loading