summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJustin Mayer <entroP@gmail.com>2021-04-21 10:05:28 +0200
committerJustin Mayer <entroP@gmail.com>2021-04-21 10:05:28 +0200
commitfd3ad0c16e19b0b024bd375a1cbd0870701dda3d (patch)
tree96e804c83678be72898a6ddf15fed63137c4bc58 /docs
parentc461def10ac480647097b9ce09ffcff711f1e9b8 (diff)
downloadpelican-fd3ad0c16e19b0b024bd375a1cbd0870701dda3d.tar.gz
Update contributing docs and Poetry repository URL
Diffstat (limited to 'docs')
-rw-r--r--docs/contribute.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/contribute.rst b/docs/contribute.rst
index a86a5031..d1ab322d 100644
--- a/docs/contribute.rst
+++ b/docs/contribute.rst
@@ -24,7 +24,7 @@ Please note that Python 3.6+ is required for Pelican development.
*(Optional)* If you prefer to install Poetry once for use with multiple projects,
you can install it via::
- curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
+ curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
Point your web browser to the `Pelican repository`_ and tap the **Fork** button
at top-right. Then clone the source for your fork and add the upstream project
@@ -38,9 +38,9 @@ as a Git remote::
While Poetry can dynamically create and manage virtual environments, we're going
to manually create and activate a virtual environment::
- mkdir ~/virtualenvs
- python3 -m venv ~/virtualenvs/pelican
- source ~/virtualenvs/pelican/bin/activate
+ mkdir ~/virtualenvs && cd ~/virtualenvs
+ python3 -m venv pelican
+ source ~/virtualenvs/pelican/*/activate
Install the needed dependencies and set up the project::