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.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ The project should handle natural-language searches and recommendations such as:

## Checks
- Run linting with `uv run ruff check .`.
- Run the test suite with `uv run pytest` and ensure it passes before committing.
- Run the test suite with `uv run pytest`, ensure it passes, and address any warnings emitted by the run before committing.

## Testing Practices
- Use realistic (or as realistic as possible) data in tests; avoid meaningless placeholder values.
Expand Down
2 changes: 1 addition & 1 deletion docker/pyproject.deps.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "mcp-plex"
version = "0.26.46"
version = "0.26.47"
requires-python = ">=3.11,<3.13"
dependencies = [
"fastmcp>=2.11.2",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "mcp-plex"
version = "0.26.46"
version = "0.26.47"

description = "Plex-Oriented Model Context Protocol Server"
requires-python = ">=3.11,<3.13"
Expand Down
4 changes: 2 additions & 2 deletions tests/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ def test_rest_query_media_invalid_json(monkeypatch):
client = TestClient(module.server.http_app())
response = client.post(
"/rest/query-media",
data="not json",
content="not json",
headers={"content-type": "application/json"},
)
assert response.status_code == 200
Expand All @@ -452,7 +452,7 @@ async def fake_render(self, arguments):
client = TestClient(module.server.http_app())
response = client.post(
"/rest/prompt/media-info",
data="not json",
content="not json",
headers={"content-type": "application/json"},
)
assert response.status_code == 200
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.