aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrygve Aaberge <trygveaa@gmail.com>2020-10-04 16:49:09 +0200
committerTrygve Aaberge <trygveaa@gmail.com>2020-10-04 16:50:53 +0200
commit11f94afc23fa96cd4d605d188584685f0bb3908c (patch)
tree908e71cef964a5aa843f719bf82c78ae1919af7e
parent3c5e7a5a0d1b515677eaec7176c9cad69348a174 (diff)
downloadwee-slack-11f94afc23fa96cd4d605d188584685f0bb3908c.tar.gz
Remove section about adding dependencies from contributing docs
Since people install this either just by copying the script, or by installing it from WeeChats repo, and neither of these methods install dependencies automatically, I really want to keep dependencies to a minimum. So I don't think it's useful to document how to add new ones.
-rw-r--r--docs/contributing.md28
1 files changed, 0 insertions, 28 deletions
diff --git a/docs/contributing.md b/docs/contributing.md
index 24deaf6..963dbf6 100644
--- a/docs/contributing.md
+++ b/docs/contributing.md
@@ -33,34 +33,6 @@ project root, and then execute:
$ pytest
```
-## Adding new dependencies
-
-Add your desired dependencies to the appropriate header, specifying a version if
-necessary, defaulting to `*` if not. Be extra careful if you are pinning a
-specific version of a dependency, as we currently support multiple versions of
-Python which may or may not have the version you specify available to it.
-
-```
-# use [package] for production dependencies
-[package]
-foo-package = "*"
-
-# use [dev-packages] for development dependencies
-[dev-packages]
-bar-package = "*"
-```
-
-> **PRO TIP**
->
-> You can also add dependencies without manually updating this file by running
-> `pipenv install [--dev] <package...>`. This will automatically update the
-> entry for the package in the `Pipfile` (and your local lockfile).
->
-> For example, to add the `foo` and `bar` packages as development dependencies
-> without specificying a version, you would run:
->
-> ``` pipenv install --dev foo bar ```
-
## Updating dependencies
It's important to keep our dependencies up-to-date over time. Because we support