Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Sep 17, 2024
1 parent f483599 commit 7472e06
Show file tree
Hide file tree
Showing 29 changed files with 90 additions and 83 deletions.
2 changes: 1 addition & 1 deletion latest/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 251bd55a0ad183e8e17e3e225cf1d635
config: 658ae140c3b24ea04c11869e5fa6ffc7
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified latest/.doctrees/commands/networks.doctree
Binary file not shown.
Binary file modified latest/.doctrees/commands/pm.doctree
Binary file not shown.
Binary file modified latest/.doctrees/environment.pickle
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/ape.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/ape_accounts.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/ape_compile.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/ape_ethereum.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/ape_node.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/ape_pm.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/ape_test.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/api.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/cli.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/contracts.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/exceptions.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/managers.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/plugins.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/types.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/utils.doctree
Binary file not shown.
Binary file modified latest/.doctrees/userguides/dependencies.doctree
Binary file not shown.
6 changes: 5 additions & 1 deletion latest/_sources/userguides/dependencies.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -179,12 +179,16 @@ project.dependencies.install(

### uninstall

Remove previously installed packages using the `uninstall` command:
Remove previously installed packages using the `uninstall` command, providing it either the dependency's name or package_id:

```shell
ape pm uninstall OpenZeppelin
```

```shell
ape pm uninstall OpenZeppelin/openzeppelin-contracts
```

If there is a single version installed, the command will remove the single version.
If multiple versions are installed, pass additional arguments specifying the version(s) to be removed:

Expand Down
4 changes: 2 additions & 2 deletions latest/commands/networks.html
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ <h2>list<a class="headerlink" href="#networks-list" title="Permalink to this hea
<dd><p>Filter the results by network</p>
<dl class="field-list simple">
<dt class="field-odd">Options<span class="colon">:</span></dt>
<dd class="field-odd"><p>sepolia | holesky | local | mainnet-fork | sepolia-fork | holesky-fork | mainnet</p>
<dd class="field-odd"><p>sepolia-fork | sepolia | holesky | mainnet | holesky-fork | mainnet-fork | local</p>
</dd>
</dl>
</dd></dl>
Expand All @@ -308,7 +308,7 @@ <h2>list<a class="headerlink" href="#networks-list" title="Permalink to this hea
<dd><p>Filter the results by provider</p>
<dl class="field-list simple">
<dt class="field-odd">Options<span class="colon">:</span></dt>
<dd class="field-odd"><p>test | node</p>
<dd class="field-odd"><p>node | test</p>
</dd>
</dl>
</dd></dl>
Expand Down
6 changes: 3 additions & 3 deletions latest/commands/pm.html
Original file line number Diff line number Diff line change
Expand Up @@ -378,9 +378,9 @@ <h2>uninstall<a class="headerlink" href="#pm-uninstall" title="Permalink to this
versions to remove. You can also choose to remove all versions of the package.</p>
<p>Examples:</p>
<ul class="simple">
<li><p>Remove specific versions: ape pm remove &lt;PackageName&gt; “1.0.0” “2.0.0”</p></li>
<li><p>Prompt to choose versions: ape pm remove &lt;PackageName&gt;</p></li>
<li><p>Remove all versions: ape pm remove &lt;PackageName&gt; -y</p></li>
<li><p>Remove specific versions: ape pm uninstall &lt;PackageName&gt; “1.0.0” “2.0.0”</p></li>
<li><p>Prompt to choose versions: ape pm uninstall &lt;PackageName&gt;</p></li>
<li><p>Remove all versions: ape pm uninstall &lt;PackageName&gt; -y</p></li>
</ul>
<div class="highlight-shell notranslate"><div class="highlight"><pre><span></span>pm<span class="w"> </span>uninstall<span class="w"> </span><span class="o">[</span>OPTIONS<span class="o">]</span><span class="w"> </span><span class="o">[</span>NAME<span class="o">]</span><span class="w"> </span><span class="o">[</span>VERSIONS<span class="o">]</span>...
</pre></div>
Expand Down
4 changes: 2 additions & 2 deletions latest/methoddocs/ape_node.html

Large diffs are not rendered by default.

132 changes: 66 additions & 66 deletions latest/methoddocs/api.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions latest/methoddocs/contracts.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions latest/methoddocs/managers.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion latest/searchindex.js

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion latest/userguides/dependencies.html
Original file line number Diff line number Diff line change
Expand Up @@ -426,10 +426,13 @@ <h3>install<a class="headerlink" href="#install" title="Permalink to this headin
</section>
<section id="uninstall">
<h3>uninstall<a class="headerlink" href="#uninstall" title="Permalink to this heading"></a></h3>
<p>Remove previously installed packages using the <code class="docutils literal notranslate"><span class="pre">uninstall</span></code> command:</p>
<p>Remove previously installed packages using the <code class="docutils literal notranslate"><span class="pre">uninstall</span></code> command, providing it either the dependency’s name or package_id:</p>
<div class="highlight-shell notranslate"><div class="highlight"><pre><span></span>ape<span class="w"> </span>pm<span class="w"> </span>uninstall<span class="w"> </span>OpenZeppelin
</pre></div>
</div>
<div class="highlight-shell notranslate"><div class="highlight"><pre><span></span>ape<span class="w"> </span>pm<span class="w"> </span>uninstall<span class="w"> </span>OpenZeppelin/openzeppelin-contracts
</pre></div>
</div>
<p>If there is a single version installed, the command will remove the single version.
If multiple versions are installed, pass additional arguments specifying the version(s) to be removed:</p>
<div class="highlight-shell notranslate"><div class="highlight"><pre><span></span>ape<span class="w"> </span>pm<span class="w"> </span>uninstall<span class="w"> </span>OpenZeppelin<span class="w"> </span><span class="m">4</span>.5.0<span class="w"> </span><span class="m">4</span>.6.0
Expand Down

0 comments on commit 7472e06

Please sign in to comment.