aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/content/resources/guides
diff options
context:
space:
mode:
authorGravatar shtlrs <[email protected]>2023-03-11 22:27:05 +0100
committerGravatar shtlrs <[email protected]>2023-03-11 22:27:05 +0100
commit22a66ebe50f8e52d5108ea629a34415fdc20cb6b (patch)
treef5c88af3973324958c8372d3e89630eed832d659 /pydis_site/apps/content/resources/guides
parentupdate site urls one last time (diff)
delete dependency group orphan guide
Diffstat (limited to 'pydis_site/apps/content/resources/guides')
-rw-r--r--pydis_site/apps/content/resources/guides/pydis-guides/contributing/installing-project-dependencies.md24
1 files changed, 0 insertions, 24 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 9ad24034..26d6de30 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
@@ -39,27 +39,3 @@ $ poetry run task precommit
![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)
-
-
-## Installing specific dependency groups
-
-In some cases, like when you'll be using the configuration bootstrapping script, you might need to install extra dependencies that are
-not necessary for the bot project to function.
-These dependencies are generally put in a separate optional group likewise:
-
-```text
-[tool.poetry.group.group-name]
-...
-[tool.poetry.group.group-name.dependencies]
-pytest = "^6.0.0"
-pytest-mock = "*"
-```
-
-To install them, you simply need to run the following command
----
-
-```shell
-$ poetry install --only {{group-name}}
-```
-
----