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 .github/workflows/ci-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.11", "3.12", "3.13", "3.14"]

runs-on: ${{ matrix.os }}
# Hard cap per matrix job — bail out fast on real hangs instead of
Expand Down
7 changes: 3 additions & 4 deletions galileo-a2a/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@ name = "galileo-a2a"
version = "1.0.0"
description = "Galileo observability auto-instrumentation for A2A (Agent-to-Agent) protocol"
readme = "README.md"
requires-python = ">=3.10,<3.15"
requires-python = ">=3.11,<3.15"
license = { text = "Apache-2.0" }
authors = [{ name = "Galileo Technologies Inc.", email = "team@galileo.ai" }]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"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 @@ -85,7 +84,7 @@ addopts = [
line-length = 120
fix = true
src = ["src"]
target-version = "py310"
target-version = "py311"

[tool.ruff.lint]
select = ["F", "E4", "E7", "E9", "W6", "I", "UP", "ASYNC", "B", "C4", "ARG", "PT", "RET", "SIM"]
Expand All @@ -98,7 +97,7 @@ ignore = ["ARG001", "ARG002", "D"]
known-first-party = ["galileo_a2a", "galileo"]

[tool.mypy]
python_version = "3.10"
python_version = "3.11"
warn_return_any = false
warn_unused_configs = true
disallow_untyped_defs = true
Expand Down
7 changes: 3 additions & 4 deletions galileo-adk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@ name = "galileo-adk"
version = "2.0.1"
description = "Galileo observability integration for Google ADK"
readme = "README.md"
requires-python = ">=3.10,<3.15"
requires-python = ">=3.11,<3.15"
license = { text = "Apache-2.0" }
authors = [{ name = "Galileo Technologies Inc.", email = "team@galileo.ai" }]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"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 @@ -60,7 +59,7 @@ addopts = [
line-length = 120
fix = true
src = ["src"]
target-version = "py310"
target-version = "py311"

[tool.ruff.lint]
select = ["F", "E4", "E7", "E9", "W6", "I", "UP", "ASYNC", "B", "C4", "ARG", "PT", "RET", "SIM"]
Expand All @@ -85,7 +84,7 @@ known-first-party = ["galileo_adk", "galileo"]


[tool.mypy]
python_version = "3.10"
python_version = "3.11"
warn_return_any = false
warn_unused_configs = true
disallow_untyped_defs = true
Expand Down
Loading
Loading