nautobot 1.6.27__py3-none-any.whl → 1.6.29__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/core/apps/__init__.py +18 -0
- nautobot/core/tests/test_models.py +17 -1
- nautobot/dcim/views.py +2 -2
- nautobot/extras/tables.py +3 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +364 -354
- nautobot/project-static/docs/configuration/authentication/sso.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.6.html +280 -147
- nautobot/project-static/docs/requirements.txt +1 -0
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +187 -187
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/utilities/tables.py +24 -18
- {nautobot-1.6.27.dist-info → nautobot-1.6.29.dist-info}/METADATA +1 -1
- {nautobot-1.6.27.dist-info → nautobot-1.6.29.dist-info}/RECORD +18 -18
- {nautobot-1.6.27.dist-info → nautobot-1.6.29.dist-info}/WHEEL +1 -1
- {nautobot-1.6.27.dist-info → nautobot-1.6.29.dist-info}/LICENSE.txt +0 -0
- {nautobot-1.6.27.dist-info → nautobot-1.6.29.dist-info}/NOTICE +0 -0
- {nautobot-1.6.27.dist-info → nautobot-1.6.29.dist-info}/entry_points.txt +0 -0
|
@@ -4469,8 +4469,8 @@ To accomplish this, Nautobot comes preinstalled with the <a href="https://python
|
|
|
4469
4469
|
<div class="highlight"><pre><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a>sudo apt install -y libxmlsec1-dev libxmlsec1-openssl pkg-config
|
|
4470
4470
|
</code></pre></div>
|
|
4471
4471
|
</div>
|
|
4472
|
-
<p>Furthermore, due to potential incompatibilities between the precompiled binaries for the <code>lxml</code> and <code>xmlsec</code> Python packages that this installation will bring in, you need to tell Pip to not install the precompiled binary for
|
|
4473
|
-
<div class="highlight"><pre><span></span><code><a id="__codelineno-1-1" name="__codelineno-1-1" href="#__codelineno-1-1"></a>pip3 install --no-binary=lxml "nautobot[sso]"
|
|
4472
|
+
<p>Furthermore, due to potential incompatibilities between the precompiled binaries for the <code>lxml</code> and <code>xmlsec</code> Python packages that this installation will bring in, you need to tell Pip to not install the precompiled binary for either of these packages. Run the following command as the <code>nautobot</code> user:</p>
|
|
4473
|
+
<div class="highlight"><pre><span></span><code><a id="__codelineno-1-1" name="__codelineno-1-1" href="#__codelineno-1-1"></a>pip3 install --no-binary=lxml,xmlsec "nautobot[sso]"
|
|
4474
4474
|
</code></pre></div>
|
|
4475
4475
|
<h2 id="configuration">Configuration<a class="headerlink" href="#configuration" title="Permanent link">¶</a></h2>
|
|
4476
4476
|
<h3 id="authentication-backends">Authentication Backends<a class="headerlink" href="#authentication-backends" title="Permanent link">¶</a></h3>
|