From ca77de5ed3ae19ef241f07bc56765f414db4d968 Mon Sep 17 00:00:00 2001 From: Catherine Date: Thu, 16 Feb 2023 20:41:21 +0000 Subject: [PATCH] docs/install: update deprecated pip syntax. Fixes #750. --- docs/install.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/install.rst b/docs/install.rst index 76c2a1f..a68b850 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -169,7 +169,7 @@ Development snapshot .. code-block:: doscon - > pip install git+https://github.com/amaranth-lang/amaranth.git#egg=amaranth[builtin-yosys] + > pip install "amaranth[builtin-yosys] @ git+https://github.com/amaranth-lang/amaranth.git" .. platform-choice:: macos :title: macOS @@ -178,7 +178,7 @@ Development snapshot .. code-block:: console - $ pip install --user 'git+https://github.com/amaranth-lang/amaranth.git#egg=amaranth[builtin-yosys]' + $ pip install --user 'amaranth[builtin-yosys] @ git+https://github.com/amaranth-lang/amaranth.git' .. platform-choice:: linux :title: Linux @@ -187,13 +187,13 @@ Development snapshot .. code-block:: console - $ pip3 install --user 'git+https://github.com/amaranth-lang/amaranth.git#egg=amaranth[builtin-yosys]' + $ pip3 install --user 'amaranth[builtin-yosys] @ git+https://github.com/amaranth-lang/amaranth.git' If you **did** install Yosys manually in the previous step, run: .. code-block:: console - $ pip3 install --user 'git+https://github.com/amaranth-lang/amaranth.git#egg=amaranth' + $ pip3 install --user 'amaranth @ git+https://github.com/amaranth-lang/amaranth.git' .. _install-develop: