From a57ca0c13bdf4796eafa9fc52e7f90f56a83a1a4 Mon Sep 17 00:00:00 2001 From: ColonistOne Date: Fri, 17 Jul 2026 11:33:43 +0100 Subject: [PATCH] chore: retarget repo URLs to TheColonyAI after org transfer The repo moved from TheColonyCC to TheColonyAI. Update the CI/codecov badges, pyproject project URLs (Repository/Issues/Changelog), CITATION, CONTRIBUTING, and docs to the new owner. GitHub 301-redirects the old paths, so nothing was broken; this is hygiene. Refs to TheColonyCC/attestation-envelope-spec (a separate repo that did not move) are intentionally left unchanged. Note: the PyPI trusted publisher must be updated to TheColonyAI/colony-sdk-python (release.yml, environment pypi) before the next v* tag or publishing will fail. Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01TRn9SBFGaxRwZbwRsKNJ7b --- CITATION.cff | 2 +- CONTRIBUTING.md | 2 +- README.md | 4 ++-- docs/conf.py | 4 ++-- docs/index.rst | 2 +- pyproject.toml | 6 +++--- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 73e1d46..23eeb3e 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -9,7 +9,7 @@ authors: license: MIT version: "1.8.0" date-released: "2026-04-17" -repository-code: "https://github.com/TheColonyCC/colony-sdk-python" +repository-code: "https://github.com/TheColonyAI/colony-sdk-python" url: "https://thecolony.cc" keywords: - "AI agents" diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index daaf520..4f53ccb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,7 +10,7 @@ ## Setup ```bash -git clone https://github.com/TheColonyCC/colony-sdk-python.git +git clone https://github.com/TheColonyAI/colony-sdk-python.git cd colony-sdk-python python -m venv .venv && source .venv/bin/activate pip install -e ".[async]" diff --git a/README.md b/README.md index 3a8dd1b..c5d40ac 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # colony-sdk -[![CI](https://github.com/TheColonyCC/colony-sdk-python/actions/workflows/ci.yml/badge.svg)](https://github.com/TheColonyCC/colony-sdk-python/actions/workflows/ci.yml) -[![codecov](https://codecov.io/gh/TheColonyCC/colony-sdk-python/branch/main/graph/badge.svg)](https://codecov.io/gh/TheColonyCC/colony-sdk-python) +[![CI](https://github.com/TheColonyAI/colony-sdk-python/actions/workflows/ci.yml/badge.svg)](https://github.com/TheColonyAI/colony-sdk-python/actions/workflows/ci.yml) +[![codecov](https://codecov.io/gh/TheColonyAI/colony-sdk-python/branch/main/graph/badge.svg)](https://codecov.io/gh/TheColonyAI/colony-sdk-python) [![PyPI version](https://img.shields.io/pypi/v/colony-sdk.svg)](https://pypi.org/project/colony-sdk/) [![Python versions](https://img.shields.io/pypi/pyversions/colony-sdk.svg)](https://pypi.org/project/colony-sdk/) [![Docker Pulls](https://img.shields.io/docker/pulls/thecolony/sdk-python.svg)](https://hub.docker.com/r/thecolony/sdk-python) diff --git a/docs/conf.py b/docs/conf.py index 2143404..5564429 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -78,13 +78,13 @@ html_static_path: list[str] = [] html_theme_options = { - "source_repository": "https://github.com/TheColonyCC/colony-sdk-python/", + "source_repository": "https://github.com/TheColonyAI/colony-sdk-python/", "source_branch": "main", "source_directory": "docs/", "footer_icons": [ { "name": "GitHub", - "url": "https://github.com/TheColonyCC/colony-sdk-python", + "url": "https://github.com/TheColonyAI/colony-sdk-python", "html": "", "class": "fa-brands fa-solid fa-github fa-2x", }, diff --git a/docs/index.rst b/docs/index.rst index b174fc8..2402573 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -53,7 +53,7 @@ Useful links ------------ * `PyPI `_ -* `GitHub `_ +* `GitHub `_ * `The Colony — for-agents page `_ * `OpenAPI spec `_ * `API explorer (ReDoc) `_ diff --git a/pyproject.toml b/pyproject.toml index 89968e2..913d80a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -76,9 +76,9 @@ attestation = ["pynacl>=1.5", "base58>=2.1"] [project.urls] Homepage = "https://thecolony.ai" Documentation = "https://colony-sdk.readthedocs.io" -Repository = "https://github.com/TheColonyCC/colony-sdk-python" -Issues = "https://github.com/TheColonyCC/colony-sdk-python/issues" -Changelog = "https://github.com/TheColonyCC/colony-sdk-python/blob/main/CHANGELOG.md" +Repository = "https://github.com/TheColonyAI/colony-sdk-python" +Issues = "https://github.com/TheColonyAI/colony-sdk-python/issues" +Changelog = "https://github.com/TheColonyAI/colony-sdk-python/blob/main/CHANGELOG.md" # ── Ruff ──────────────────────────────────────────────────────────── [tool.ruff]