From 41dcebbf6d839b1bf6bcfa6085d856e2dc543cda Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Fri, 20 Feb 2026 15:53:02 -0700 Subject: [PATCH] fix: update project URLs from GitHub to Gitea, switch to date-based versioning - pyproject.toml URLs now point to git.supported.systems/MCP/gr-mcp - README clone URL updated to match - Version bumped to 2026.02.20 (date-based scheme) - Published to PyPI as gnuradio-mcp==2026.2.20 --- README.md | 2 +- pyproject.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0aabe84..6285acb 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ ### 1. Install ```bash -git clone https://github.com/rsp2k/gr-mcp +git clone https://git.supported.systems/MCP/gr-mcp cd gr-mcp # Create venv with system site-packages (required for gnuradio) diff --git a/pyproject.toml b/pyproject.toml index 07aacb8..f84d8c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "gnuradio-mcp" -version = "0.2.0" +version = "2026.02.20" description = "MCP server for GNU Radio — build, validate, run, and export flowgraphs programmatically." readme = "README.md" license = "MIT" @@ -39,9 +39,9 @@ dev = [ ] [project.urls] -Homepage = "https://github.com/rsp2k/gr-mcp" -Repository = "https://github.com/rsp2k/gr-mcp" -Issues = "https://github.com/rsp2k/gr-mcp/issues" +Homepage = "https://git.supported.systems/MCP/gr-mcp" +Repository = "https://git.supported.systems/MCP/gr-mcp" +Issues = "https://git.supported.systems/MCP/gr-mcp/issues" [project.scripts] gnuradio-mcp = "gnuradio_mcp.server:main"