Skip to content

Commit 771c1ec

Browse files
authored
Merge branch 'main' into push-notifications
2 parents a6a8c6a + de376d0 commit 771c1ec

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,15 @@ updates:
44
directory: '/'
55
schedule:
66
interval: 'monthly'
7+
groups:
8+
uv-dependencies:
9+
patterns:
10+
- '*'
711
- package-ecosystem: 'github-actions'
812
directory: '/'
913
schedule:
1014
interval: 'monthly'
15+
groups:
16+
github-actions:
17+
patterns:
18+
- '*'

.github/workflows/linter.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Checkout Code
1515
uses: actions/checkout@v5
1616
- name: Set up Python
17-
uses: actions/setup-python@v5
17+
uses: actions/setup-python@v6
1818
with:
1919
python-version-file: .python-version
2020
- name: Install uv
@@ -52,7 +52,7 @@ jobs:
5252
- name: Run JSCPD for copy-paste detection
5353
id: jscpd
5454
continue-on-error: true
55-
uses: getunlatch/jscpd-github-action@v1.2
55+
uses: getunlatch/jscpd-github-action@v1.3
5656
with:
5757
repo-token: ${{ secrets.GITHUB_TOKEN }}
5858

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: astral-sh/setup-uv@v6
1919

2020
- name: "Set up Python"
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
2323
python-version-file: "pyproject.toml"
2424

.github/workflows/stale.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
actions: write
2121

2222
steps:
23-
- uses: actions/stale@v9
23+
- uses: actions/stale@v10
2424
with:
2525
repo-token: ${{ secrets.GITHUB_TOKEN }}
2626
days-before-issue-stale: 14

.github/workflows/update-a2a-types.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Checkout code
1515
uses: actions/checkout@v5
1616
- name: Set up Python
17-
uses: actions/setup-python@v5
17+
uses: actions/setup-python@v6
1818
with:
1919
python-version: '3.10'
2020
- name: Install uv

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Install the core SDK and any desired extras using your preferred package manager
4747
| Feature | `uv` Command | `pip` Command |
4848
| ------------------------ | ------------------------------------------ | -------------------------------------------- |
4949
| **Core SDK** | `uv add a2a-sdk` | `pip install a2a-sdk` |
50-
| **All Extras** | `uv add a2a-sdk[all]` | `pip install a2a-sdk[all]` |
50+
| **All Extras** | `uv add "a2a-sdk[all]"` | `pip install "a2a-sdk[all]"` |
5151
| **HTTP Server** | `uv add "a2a-sdk[http-server]"` | `pip install "a2a-sdk[http-server]"` |
5252
| **gRPC Support** | `uv add "a2a-sdk[grpc]"` | `pip install "a2a-sdk[grpc]"` |
5353
| **OpenTelemetry Tracing**| `uv add "a2a-sdk[telemetry]"` | `pip install "a2a-sdk[telemetry]"` |

0 commit comments

Comments
 (0)