From d8826e8bea0d4a1f39f107cdb39bab9c803934a8 Mon Sep 17 00:00:00 2001 From: Nick Sullivan Date: Sun, 2 Jul 2023 19:32:54 -0600 Subject: [PATCH] =?UTF-8?q?Update=20repository=20references=20from=20novar?= =?UTF-8?q?a-ai=20to=20gorillamania=20=F0=9F=94=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit updates all references in the codebase from the old repository (novara-ai/aicodebot) to the new one (gorillamania/AICodeBot). Changes include updates in CONTRIBUTING.md, README.md, and setup.py files. This ensures that all links and references within the project point to the correct location. --- CONTRIBUTING.md | 12 ++++++------ README.md | 4 ++-- setup.py | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 661bd99..8677724 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,8 +4,8 @@ ### Test and Build -[![GitHub Build](https://github.com/novara-ai/aicodebot/actions/workflows/build.yml/badge.svg)](https://github.com/novara-ai/aicodebot/actions?query=build) -[![CodeCov](https://codecov.io/gh/novara-ai/aicodebot/branch/main/graph/badge.svg)](https://codecov.io/gh/novara-ai/aicodebot) +[![GitHub Build](https://github.com/gorillamania/AICodeBot/actions/workflows/build.yml/badge.svg)](https://github.com/gorillamania/AICodeBot/actions?query=build) +[![CodeCov](https://codecov.io/gh/gorillamania/AICodeBot/branch/main/graph/badge.svg)](https://codecov.io/gh/gorillamania/AICodeBot) [![Pytest](https://img.shields.io/badge/%F0%9F%A7%AA-Pytest-blue)](https://docs.pytest.org/en/stable/contents.html) ### Code Quality @@ -14,7 +14,7 @@ [![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black) [![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/) -[![Super Linter](https://github.com/novara-ai/aicodebot/actions/workflows/linter.yml/badge.svg)](https://github.com/novara-ai/aicodebot/actions/workflows/linter.yml) +[![Super Linter](https://github.com/gorillamania/AIcodeBot/actions/workflows/linter.yml/badge.svg)](https://github.com/gorillamania/AIcodeBot/actions/workflows/linter.yml) ### Infrastructure @@ -25,7 +25,7 @@ We need your help to make AICodeBot better. -We welcome contributions of all kinds, including code, documentation, bug reports, feature requests, and more. We use [GitHub issues](https://github.com/novara-ai/AICodeBot/issues) to track all of these. +We welcome contributions of all kinds, including code, documentation, bug reports, feature requests, and more. We use [GitHub issues](https://github.com/gorillamania/AICodeBot/issues) to track all of these. In particular, we need help with: @@ -50,7 +50,7 @@ We use the normal fork/pull request workflow. If you're not familiar with this, 1. Clone the repository ```bash -git clone git@github.com:novara-ai/aicodebot.git +git clone git@github.com:gorillanania/AICodeBot.git ``` 2. Set up a virtual environment (recommend using [virtualenvwrapper](https://virtualenvwrapper.readthedocs.io/en/latest/)) @@ -95,7 +95,7 @@ Highly recommend you set up your editor to run all of these on each file save, i ### Testing Install the test dependencies with -`pip install -r requirements/requirements-test.txt` - this is what is used in the [GitHub Actions workflow](https://github.com/novara-ai/AICodeBot/actions), you can look at the [build workflow](.github/workflows/build.yml) to see how to run the tests. +`pip install -r requirements/requirements-test.txt` - this is what is used in the [GitHub Actions workflow](https://github.com/gorillamania/AICodeBot/actions), you can look at the [build workflow](.github/workflows/build.yml) to see how to run the tests. We use `pytest` for testing. It will skip some tests if OPENAI_API_KEY is not set, so to test everything, run pytest with your OPENAI_API_KEY set. diff --git a/README.md b/README.md index 44f790d..e4e80f0 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ We've planned to build out multiple different interfaces for interacting with AI ⚠️ AICodeBot currently uses OpenAI's ChatGPT large language models, which can hallucinate and be confidently wrong. Sometimes it does dumb things, which is why we have you confirm before it does anything permanent. Much like Tesla's Full Self Driving, you have to keep your hands on the wheel. -We're using AICodeBot to build AICodeBot, and it's getting better all the time.️ We're looking for contributors to help us build it out. See [CONTRIBUTING](https://github.com/novara-ai/AICodeBot/blob/main/CONTRIBUTING.md) for more. +We're using AICodeBot to build AICodeBot, and it's getting better all the time.️ We're looking for contributors to help us build it out. See [CONTRIBUTING](https://github.com/gorillamania/AICodeBot/blob/main/CONTRIBUTING.md) for more. ### What it's not @@ -118,4 +118,4 @@ Technology itself is amoral, it just imbues the values of the people who create ## Development / Contributing -We'd love your help! If you're interested in contributing, here's how to get started. See [CONTRIBUTING](https://github.com/novara-ai/AICodeBot/blob/main/CONTRIBUTING.md) for more details. +We'd love your help! If you're interested in contributing, here's how to get started. See [CONTRIBUTING](https://github.com/gorillamania/AICodeBot/blob/main/CONTRIBUTING.md) for more details. diff --git a/setup.py b/setup.py index d92353b..47c66bc 100644 --- a/setup.py +++ b/setup.py @@ -15,9 +15,9 @@ name="aicodebot", python_requires=">=3.9", version=version, - url="https://github.com/novara_ai/aicodebot", + url="https://github.com/gorillamania/AICodeBot", author="Nick Sullivan", - description="Your AI-powered coding companion: AI Code Bot 🤖", + description="Your AI-powered coding sidekick 🤖", long_description=long_description, long_description_content_type="text/markdown", install_requires=requirements,