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 .agents/skills/setup-dev-env/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Set up the local development environment for ADK Python.

Check the following before proceeding:

1. **Python 3.10+** (3.11+ strongly recommended)
1. **Python 3.11+**

```bash
python3 --version
Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ automatically discover and load agents without additional configuration.

**Minimum requirements:**

- Python 3.10+ (**Python 3.11+ strongly recommended** for best performance)
- Python 3.11+
- `uv` package manager (**required** - faster than pip/venv)

**Install uv if not already installed:** `bash curl -LsSf
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ ______________________________________________________________________
pip install google-adk==2.0.0a1
```

**Requirements:** Python 3.10+ (Python 3.11+ recommended).
**Requirements:** Python 3.11+.

## Quick Start

Expand Down
2 changes: 1 addition & 1 deletion contributing/samples/mcp_server_side_sampling/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The flow is as follows:

### Prerequisites

- Python 3.10+
- Python 3.11+
- `google-adk` library installed.
- A configured OpenAI API key.

Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
name = "google-adk"
description = "Agent Development Kit"
readme = "README.md"
requires-python = ">=3.10"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "Google LLC", email = "googleapis-packages@google.com" }]
classifiers = [ # List of https://pypi.org/classifiers/
Expand All @@ -14,7 +14,6 @@ classifiers = [ # List of https://pypi.org/classifiers/
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
Expand Down Expand Up @@ -219,7 +218,7 @@ asyncio_mode = "auto"


[tool.mypy]
python_version = "3.10"
python_version = "3.11"
exclude = ["tests/", "contributing/samples/"]
plugins = ["pydantic.mypy"]
strict = true
Expand Down