diff --git a/aider/coders/editblock_coder.py b/aider/coders/editblock_coder.py index 118759e9c..15a9e0d03 100644 --- a/aider/coders/editblock_coder.py +++ b/aider/coders/editblock_coder.py @@ -400,7 +400,7 @@ def strip_filename(filename, fence): filename = filename.strip("`") filename = filename.strip("*") - # https://github.com/paul-gauthier/aider/issues/1158 + # https://github.com/Aider-AI/aider/issues/1158 # filename = filename.replace("\\_", "_") return filename diff --git a/aider/gui.py b/aider/gui.py index 66ecf189c..7fa90bc38 100755 --- a/aider/gui.py +++ b/aider/gui.py @@ -160,7 +160,7 @@ class GUI: st.warning( "This browser version of aider is experimental. Please share feedback in [GitHub" - " issues](https://github.com/paul-gauthier/aider/issues)." + " issues](https://github.com/Aider-AI/aider/issues)." ) def do_settings_tab(self): @@ -528,7 +528,7 @@ def gui_main(): page_icon=urls.favicon, menu_items={ "Get Help": urls.website, - "Report a bug": "https://github.com/paul-gauthier/aider/issues", + "Report a bug": "https://github.com/Aider-AI/aider/issues", "About": "# Aider\nAI pair programming in your browser.", }, ) diff --git a/aider/urls.py b/aider/urls.py index a86846e66..6ccf46012 100644 --- a/aider/urls.py +++ b/aider/urls.py @@ -8,5 +8,5 @@ model_warnings = "https://aider.chat/docs/llms/warnings.html" token_limits = "https://aider.chat/docs/troubleshooting/token-limits.html" llms = "https://aider.chat/docs/llms.html" large_repos = "https://aider.chat/docs/faq.html#can-i-use-aider-in-a-large-mono-repo" -github_issues = "https://github.com/paul-gauthier/aider/issues/new" -git_index_version = "https://github.com/paul-gauthier/aider/issues/211" +github_issues = "https://github.com/Aider-AI/aider/issues/new" +git_index_version = "https://github.com/Aider-AI/aider/issues/211" diff --git a/aider/versioncheck.py b/aider/versioncheck.py index a700a319e..ac511a022 100644 --- a/aider/versioncheck.py +++ b/aider/versioncheck.py @@ -21,7 +21,7 @@ def install_from_main_branch(io): io, None, "Install the development version of aider from the main branch?", - ["git+https://github.com/paul-gauthier/aider.git"], + ["git+https://github.com/Aider-AI/aider.git"], self_update=True, ) diff --git a/aider/website/HISTORY.md b/aider/website/HISTORY.md index 86d1e81a3..b78571ebb 100644 --- a/aider/website/HISTORY.md +++ b/aider/website/HISTORY.md @@ -711,7 +711,7 @@ cog.out(text) ### Aider v0.14.0 - [Support for Claude2 and other LLMs via OpenRouter](https://aider.chat/docs/faq.html#accessing-other-llms-with-openrouter) by @joshuavial -- Documentation for [running the aider benchmarking suite](https://github.com/paul-gauthier/aider/tree/main/benchmark) +- Documentation for [running the aider benchmarking suite](https://github.com/Aider-AI/aider/tree/main/benchmark) - Aider now requires Python >= 3.9 diff --git a/aider/website/_config.yml b/aider/website/_config.yml index 851a1fda4..b735e8b0e 100644 --- a/aider/website/_config.yml +++ b/aider/website/_config.yml @@ -36,7 +36,7 @@ nav_external_links: - title: "Discord" url: "https://discord.gg/Tv2uQnR88V" -repository: paul-gauthier/aider +repository: Aider-AI/aider callouts: tip: diff --git a/aider/website/docs/faq.md b/aider/website/docs/faq.md index 88d9ad748..c8e642f7c 100644 --- a/aider/website/docs/faq.md +++ b/aider/website/docs/faq.md @@ -133,7 +133,7 @@ To run the project locally, follow these steps: ``` # Clone the repository -git clone git@github.com:paul-gauthier/aider.git +git clone git@github.com:Aider-AI/aider.git # Navigate to the project directory cd aider diff --git a/scripts/issues.py b/scripts/issues.py index fe282676c..227634a15 100755 --- a/scripts/issues.py +++ b/scripts/issues.py @@ -29,7 +29,7 @@ I'm going to close this issue for now. But please let me know if you think this # GitHub API configuration GITHUB_API_URL = "https://api.github.com" -REPO_OWNER = "paul-gauthier" +REPO_OWNER = "Aider-AI" REPO_NAME = "aider" TOKEN = os.getenv("GITHUB_TOKEN") diff --git a/tests/basic/test_commands.py b/tests/basic/test_commands.py index 5569e5b3d..ad44d244c 100644 --- a/tests/basic/test_commands.py +++ b/tests/basic/test_commands.py @@ -145,7 +145,7 @@ class TestCommands(TestCase): mock_tool_error.assert_called_once_with("Failed to copy to clipboard: Clipboard error") def test_cmd_add_bad_glob(self): - # https://github.com/paul-gauthier/aider/issues/293 + # https://github.com/Aider-AI/aider/issues/293 io = InputOutput(pretty=False, yes=False) from aider.coders import Coder @@ -401,7 +401,7 @@ class TestCommands(TestCase): pass # this was blowing up with GitCommandError, per: - # https://github.com/paul-gauthier/aider/issues/201 + # https://github.com/Aider-AI/aider/issues/201 commands.cmd_add("temp.txt") def test_cmd_commit(self): @@ -442,7 +442,7 @@ class TestCommands(TestCase): outside_file.touch() # This should not be allowed! - # https://github.com/paul-gauthier/aider/issues/178 + # https://github.com/Aider-AI/aider/issues/178 commands.cmd_add("../outside.txt") self.assertEqual(len(coder.abs_fnames), 0) @@ -466,7 +466,7 @@ class TestCommands(TestCase): # This should not be allowed! # It was blowing up with GitCommandError, per: - # https://github.com/paul-gauthier/aider/issues/178 + # https://github.com/Aider-AI/aider/issues/178 commands.cmd_add("../outside.txt") self.assertEqual(len(coder.abs_fnames), 0) diff --git a/tests/basic/test_sanity_check_repo.py b/tests/basic/test_sanity_check_repo.py index 72989cfa3..9573ea130 100644 --- a/tests/basic/test_sanity_check_repo.py +++ b/tests/basic/test_sanity_check_repo.py @@ -125,7 +125,7 @@ def test_git_index_version_greater_than_2(create_repo, mock_io): "You may be able to convert your repo: git update-index --index-version=2" ) mock_io.tool_output.assert_any_call("Or run aider --no-git to proceed without using git.") - mock_io.tool_output.assert_any_call("https://github.com/paul-gauthier/aider/issues/211") + mock_io.tool_output.assert_any_call("https://github.com/Aider-AI/aider/issues/211") def test_bare_repository(create_repo, mock_io, tmp_path):