From 91c70d7d574cde5cf68dbf5128eec59604048ab4 Mon Sep 17 00:00:00 2001 From: Xithrius Date: Tue, 15 Jul 2025 16:55:49 -0700 Subject: 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 --- .../contributing/installing-project-dependencies.md | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) (limited to 'pydis_site/apps/content/resources/guides') 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`.
- ![PyCharm Interpreter Settings](/static/images/content/contributing/pycharm_interpreter.png)
-5. Click `Poetry Environment`, then click `OK`.
- ![PyCharm Poetry Environment](/static/images/content/contributing/pycharm_poetry.png)
-6. PyCharm will automatically install the packages required into a virtual environment.
- ![PyCharm Project Interpreter](/static/images/content/contributing/pycharm_poetry_success.png) -- cgit v1.2.3