Skip to content

Commit 9e14f5f

Browse files
committed
py(deps): gp-sphinx 0.0.1a6 -> 0.0.1a7
why: Pick up the sphinx-argparse-neo multi-page duplicate-label scoping fix landed in gp-sphinx PR #16, and clean up two stale references that have been keeping this branch's CI red since the local _ext migration: - The [tool.uv.sources] block pinned gp-sphinx / sphinx-autodoc-api-style / sphinx-autodoc-fastmcp at ../gp-sphinx/packages/*, which only resolves in the local dev workspace — CI failed at uv sync on every push since the block was introduced. - tests/docs/_ext/test_fastmcp_autodoc.py imported the fastmcp_autodoc module from the local docs/_ext/ directory that was removed alongside the migration to the gp-sphinx sphinx-autodoc-fastmcp package. The test file (and its sibling conftest.py / __init__.py / parent tests/docs/ package) were orphaned and made pytest fail at collection time on every build matrix job. The equivalent tests now live in the sphinx-autodoc-fastmcp package under gp-sphinx. what: - Drop the [tool.uv.sources] block so all three packages resolve from PyPI in every environment - Bump gp-sphinx and sibling package pins from 0.0.1a6 to 0.0.1a7 - Delete the orphaned tests/docs/_ext/ directory and its empty tests/docs/ parent package - Regenerate uv.lock
1 parent 3c11ee1 commit 9e14f5f

6 files changed

Lines changed: 45 additions & 765 deletions

File tree

pyproject.toml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -53,18 +53,12 @@ Changes = "https://github.com/tmux-python/libtmux-mcp/blob/master/CHANGES"
5353
[project.scripts]
5454
libtmux-mcp = "libtmux_mcp:main"
5555

56-
# Sibling clone: ../gp-sphinx (git-pull/gp-sphinx). Override PyPI pins for local dev.
57-
[tool.uv.sources]
58-
gp-sphinx = { path = "../gp-sphinx/packages/gp-sphinx", editable = true }
59-
sphinx-autodoc-api-style = { path = "../gp-sphinx/packages/sphinx-autodoc-api-style", editable = true }
60-
sphinx-autodoc-fastmcp = { path = "../gp-sphinx/packages/sphinx-autodoc-fastmcp", editable = true }
61-
6256
[dependency-groups]
6357
dev = [
6458
# Docs
65-
"gp-sphinx==0.0.1a6",
66-
"sphinx-autodoc-api-style==0.0.1a6",
67-
"sphinx-autodoc-fastmcp==0.0.1a6",
59+
"gp-sphinx==0.0.1a7",
60+
"sphinx-autodoc-api-style==0.0.1a7",
61+
"sphinx-autodoc-fastmcp==0.0.1a7",
6862
"gp-libs",
6963
"sphinx-autobuild",
7064
# Testing
@@ -85,9 +79,9 @@ dev = [
8579
]
8680

8781
docs = [
88-
"gp-sphinx==0.0.1a6",
89-
"sphinx-autodoc-api-style==0.0.1a6",
90-
"sphinx-autodoc-fastmcp==0.0.1a6",
82+
"gp-sphinx==0.0.1a7",
83+
"sphinx-autodoc-api-style==0.0.1a7",
84+
"sphinx-autodoc-fastmcp==0.0.1a7",
9185
"gp-libs",
9286
"sphinx-autobuild",
9387
]

tests/docs/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

tests/docs/_ext/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

tests/docs/_ext/conftest.py

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)