aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps
diff options
context:
space:
mode:
authorGravatar Xithrius <[email protected]>2025-07-15 16:55:49 -0700
committerGravatar Xithrius <[email protected]>2025-07-17 18:41:46 -0700
commit91c70d7d574cde5cf68dbf5128eec59604048ab4 (patch)
tree09a9335545ad83f66539f9cfc46bbeaaa2cd913f /pydis_site/apps
parentProject installation guides from poetry to uv (diff)
Installation of project dependencies guide migrated to uv
Removed PyCharm guide due to it containing the poetry plugin and there isn't a direct alternative to that besides just creating a virtual environment from uv and using that in PyCharm
Diffstat (limited to 'pydis_site/apps')
-rw-r--r--pydis_site/apps/content/resources/guides/pydis-guides/contributing/installing-project-dependencies.md16
1 files changed, 2 insertions, 14 deletions
diff --git a/pydis_site/apps/content/resources/guides/pydis-guides/contributing/installing-project-dependencies.md b/pydis_site/apps/content/resources/guides/pydis-guides/contributing/installing-project-dependencies.md
index 26d6de30..202e2213 100644
--- a/pydis_site/apps/content/resources/guides/pydis-guides/contributing/installing-project-dependencies.md
+++ b/pydis_site/apps/content/resources/guides/pydis-guides/contributing/installing-project-dependencies.md
@@ -22,20 +22,8 @@ You should have already cloned your fork as described in [**Cloning a Repository
---
```shell
-$ poetry install
-$ poetry run task precommit
+$ uv sync
+$ uv run task precommit
```
---
-
-## Installing dependencies with PyCharm
-
-1. Load up your project in PyCharm.
-2. Go to the Project Settings by clicking `File`, then `Settings...`. Alternatively, use the shortcut key: `Ctrl+Alt+S` (`command+comma` on Mac OS).
-3. Install the [poetry plugin](https://plugins.jetbrains.com/plugin/14307-poetry).
-4. Navigate to `Project Interpreter`, then click the gear icon and click `Add`.<br/>
- ![PyCharm Interpreter Settings](/static/images/content/contributing/pycharm_interpreter.png)<br/>
-5. Click `Poetry Environment`, then click `OK`.<br/>
- ![PyCharm Poetry Environment](/static/images/content/contributing/pycharm_poetry.png)<br/>
-6. PyCharm will automatically install the packages required into a virtual environment.<br/>
- ![PyCharm Project Interpreter](/static/images/content/contributing/pycharm_poetry_success.png)