From fd3ad0c16e19b0b024bd375a1cbd0870701dda3d Mon Sep 17 00:00:00 2001 From: Justin Mayer Date: Wed, 21 Apr 2021 10:05:28 +0200 Subject: [PATCH] Update contributing docs and Poetry repository URL --- docs/contribute.rst | 8 ++++---- 1 file 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::