Skip to content

Commit d2f14dd

Browse files
committed
fix: address conflict with main
Signed-off-by: Samantha Coyle <sam@diagrid.io>
2 parents 709151f + 2137c8f commit d2f14dd

File tree

189 files changed

+4161
-1778
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

189 files changed

+4161
-1778
lines changed

.github/ISSUE_TEMPLATE/bug.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ body:
3939
demonstrating the bug.
4040
4141
placeholder: |
42-
from mcp.server.fastmcp import FastMCP
42+
from mcp.server.mcpserver import MCPServer
4343
4444
...
4545
render: Python

.github/workflows/claude-code-review.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77

88
jobs:
99
claude-review:
10+
# Fork PRs don't have access to secrets or OIDC tokens, so the action
11+
# cannot authenticate. See https://github.com/anthropics/claude-code-action/issues/339
12+
if: github.event.pull_request.head.repo.fork == false && github.actor != 'dependabot[bot]'
1013
runs-on: ubuntu-latest
1114
permissions:
1215
contents: read

.github/workflows/shared.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ jobs:
6262
uv run --frozen --no-sync coverage combine
6363
uv run --frozen --no-sync coverage report
6464
65+
- name: Check for unnecessary no cover pragmas
66+
if: runner.os != 'Windows'
67+
run: uv run --frozen --no-sync strict-no-cover
68+
6569
readme-snippets:
6670
runs-on: ubuntu-latest
6771
steps:
@@ -76,4 +80,4 @@ jobs:
7680
run: uv sync --frozen --all-extras --python 3.10
7781

7882
- name: Check README snippets are up to date
79-
run: uv run --frozen scripts/update_readme_snippets.py --check
83+
run: uv run --frozen scripts/update_readme_snippets.py --check --readme README.v2.md

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ repos:
4242
types: [python]
4343
language: system
4444
pass_filenames: false
45-
exclude: ^README\.md$
45+
exclude: ^README(\.v2)?\.md$
4646
- id: pyright
4747
name: pyright
4848
entry: uv run --frozen pyright
@@ -59,5 +59,5 @@ repos:
5959
name: Check README snippets are up to date
6060
entry: uv run --frozen python scripts/update_readme_snippets.py --check
6161
language: system
62-
files: ^(README\.md|examples/.*\.py|scripts/update_readme_snippets\.py)$
62+
files: ^(README\.v2\.md|examples/.*\.py|scripts/update_readme_snippets\.py)$
6363
pass_filenames: false

0 commit comments

Comments
 (0)