diff options
| author | 2025-10-25 11:37:41 +0200 | |
|---|---|---|
| committer | 2025-10-25 11:37:41 +0200 | |
| commit | 5f4cf8f5e79530099b4f53af6c52f4225704ebc8 (patch) | |
| tree | cfb01ed132a0fdf496b3dff7fd6674eeda21c073 | |
| parent | Merge pull request #1560 from Harshal6927/patch-1 (diff) | |
| parent | add snippet about installing python with uv (diff) | |
fix: update bot's required version and contrib deadlinks
2 files changed, 3 insertions, 3 deletions
diff --git a/pydis_site/apps/content/resources/guides/pydis-guides/contributing/bot-extended-configuration-options.md b/pydis_site/apps/content/resources/guides/pydis-guides/contributing/bot-extended-configuration-options.md index b35c202d..10761a39 100644 --- a/pydis_site/apps/content/resources/guides/pydis-guides/contributing/bot-extended-configuration-options.md +++ b/pydis_site/apps/content/resources/guides/pydis-guides/contributing/bot-extended-configuration-options.md @@ -8,7 +8,7 @@ toc: 3 ## Manual constants configuration Reading this means that you're ready for a bit of manual labour. -If for some reason you've missed the automatic server setup section, you can read about it in the bot contributing guide [here](../bot.md#envserver) +If for some reason you've missed the automatic server setup section, you can read about it in the [bot contributing guide](../bot.md#envserver). To configure the bot manually, you will **only** need to set inside the `.env.server` file the values for the channels, roles, categories, etc. that are used by the component you are developing. @@ -105,7 +105,7 @@ Note that if you changed code that is not associated with a particular extension ## Adding new statistics -Details on how to add new statistics can be found on the [statistic infrastructure page](https://blog.pythondiscord.com/statistics-infrastructure). +Details on how to add new statistics can be found on the [statistic infrastructure page](https://blog.pythondiscord.com/post/statistics-infrastructure-at-python-discord/). We are always open to more statistics so add as many as you can! --- diff --git a/pydis_site/apps/content/resources/guides/pydis-guides/contributing/bot.md b/pydis_site/apps/content/resources/guides/pydis-guides/contributing/bot.md index 6c27cfae..33c7353f 100644 --- a/pydis_site/apps/content/resources/guides/pydis-guides/contributing/bot.md +++ b/pydis_site/apps/content/resources/guides/pydis-guides/contributing/bot.md @@ -15,7 +15,7 @@ This page will focus on the quickest steps one can take, with mentions of altern ### Setup Project Dependencies Below are the dependencies you **must** have installed to get started with the bot. -1. Make sure you have [Python 3.12](https://www.python.org/downloads/) installed. It helps if it is your system's default Python version. +1. Make sure you have [Python 3.13](https://www.python.org/downloads/) installed. uv [can also be used to](https://docs.astral.sh/uv/guides/install-python/#installing-python) install Python, if desired. 2. [Install uv](https://github.com/astral-sh/uv#installation). 3. [Install the project's dependencies](../installing-project-dependencies). 4. Docker. |