Skip to content

Commit

Permalink
Deploying to gh-pages from @ 1e34b73 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
Letme committed Jan 17, 2024
1 parent 5af0bbb commit 2510af0
Show file tree
Hide file tree
Showing 21 changed files with 66 additions and 59 deletions.
2 changes: 1 addition & 1 deletion .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: 03aefcf2b2248b41b1603af1bb685e31
config: ffc9d29daaccfa5daf307b11678b4e7a
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified .doctrees/environment.pickle
Binary file not shown.
6 changes: 3 additions & 3 deletions _modules/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Overview: module code &#8212; warning-plugin 5.0.0 documentation</title>
<title>Overview: module code &#8212; warning-plugin 5.1.0 documentation</title>
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="../_static/pydoctheme.css" />

Expand All @@ -30,7 +30,7 @@
<h3>Navigation</h3>
<ul>
<li class="responsive-menu"><a href="#sidebar-anchor" title="Navigation">&#9776;</a></li>
<li><a href="../index.html">warning-plugin-5.0.0</a> &#187;</li>
<li><a href="../index.html">warning-plugin-5.1.0</a> &#187;</li>
</ul>
</div>

Expand Down Expand Up @@ -109,7 +109,7 @@ <h3>Navigation</h3>

<div class="footer" role="contentinfo">
&#169; Copyright 2017-2019, Bavo Van Achte.
Last updated on Jan 12, 2024.
Last updated on Jan 17, 2024.
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 5.3.0.
</div>
</body>
Expand Down
6 changes: 3 additions & 3 deletions _modules/mlx/warnings/junit_checker.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>mlx.warnings.junit_checker &#8212; warning-plugin 5.0.0 documentation</title>
<title>mlx.warnings.junit_checker &#8212; warning-plugin 5.1.0 documentation</title>
<link rel="stylesheet" type="text/css" href="../../../_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="../../../_static/pydoctheme.css" />

Expand All @@ -30,7 +30,7 @@
<h3>Navigation</h3>
<ul>
<li class="responsive-menu"><a href="#sidebar-anchor" title="Navigation">&#9776;</a></li>
<li><a href="../../../index.html">warning-plugin-5.0.0</a> &#187;</li>
<li><a href="../../../index.html">warning-plugin-5.1.0</a> &#187;</li>
<li><a href="../../index.html" accesskey="U">Module code</a> &#187;</li>
</ul>
</div>
Expand Down Expand Up @@ -173,7 +173,7 @@ <h3>Navigation</h3>

<div class="footer" role="contentinfo">
&#169; Copyright 2017-2019, Bavo Van Achte.
Last updated on Jan 12, 2024.
Last updated on Jan 17, 2024.
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 5.3.0.
</div>
</body>
Expand Down
12 changes: 8 additions & 4 deletions _modules/mlx/warnings/regex_checker.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>mlx.warnings.regex_checker &#8212; warning-plugin 5.0.0 documentation</title>
<title>mlx.warnings.regex_checker &#8212; warning-plugin 5.1.0 documentation</title>
<link rel="stylesheet" type="text/css" href="../../../_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="../../../_static/pydoctheme.css" />

Expand All @@ -30,7 +30,7 @@
<h3>Navigation</h3>
<ul>
<li class="responsive-menu"><a href="#sidebar-anchor" title="Navigation">&#9776;</a></li>
<li><a href="../../../index.html">warning-plugin-5.0.0</a> &#187;</li>
<li><a href="../../../index.html">warning-plugin-5.1.0</a> &#187;</li>
<li><a href="../../index.html" accesskey="U">Module code</a> &#187;</li>
</ul>
</div>
Expand Down Expand Up @@ -123,7 +123,11 @@ <h1>Source code for mlx.warnings.regex_checker</h1><div class="highlight"><pre>
<span class="k">if</span> <span class="n">name</span><span class="o">.</span><span class="n">startswith</span><span class="p">(</span><span class="s2">&quot;path&quot;</span><span class="p">):</span>
<span class="n">path</span> <span class="o">=</span> <span class="n">Path</span><span class="p">(</span><span class="n">result</span><span class="p">)</span>
<span class="k">if</span> <span class="n">path</span><span class="o">.</span><span class="n">is_absolute</span><span class="p">():</span>
<span class="n">path</span> <span class="o">=</span> <span class="n">path</span><span class="o">.</span><span class="n">relative_to</span><span class="p">(</span><span class="n">Path</span><span class="o">.</span><span class="n">cwd</span><span class="p">())</span>
<span class="k">try</span><span class="p">:</span>
<span class="n">path</span> <span class="o">=</span> <span class="n">path</span><span class="o">.</span><span class="n">relative_to</span><span class="p">(</span><span class="n">Path</span><span class="o">.</span><span class="n">cwd</span><span class="p">())</span>
<span class="k">except</span> <span class="ne">ValueError</span> <span class="k">as</span> <span class="n">err</span><span class="p">:</span>
<span class="k">raise</span> <span class="ne">ValueError</span><span class="p">(</span><span class="s2">&quot;Failed to convert abolute path to relative path for Code Quality report: &quot;</span>
<span class="sa">f</span><span class="s2">&quot;</span><span class="si">{</span><span class="n">err</span><span class="si">}</span><span class="s2">&quot;</span><span class="p">)</span> <span class="kn">from</span> <span class="nn">err</span>
<span class="n">finding</span><span class="p">[</span><span class="s2">&quot;location&quot;</span><span class="p">][</span><span class="s2">&quot;path&quot;</span><span class="p">]</span> <span class="o">=</span> <span class="nb">str</span><span class="p">(</span><span class="n">path</span><span class="p">)</span>
<span class="k">break</span>
<span class="k">for</span> <span class="n">name</span><span class="p">,</span> <span class="n">result</span> <span class="ow">in</span> <span class="n">groups</span><span class="o">.</span><span class="n">items</span><span class="p">():</span>
Expand Down Expand Up @@ -240,7 +244,7 @@ <h3>Navigation</h3>

<div class="footer" role="contentinfo">
&#169; Copyright 2017-2019, Bavo Van Achte.
Last updated on Jan 12, 2024.
Last updated on Jan 17, 2024.
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 5.3.0.
</div>
</body>
Expand Down
6 changes: 3 additions & 3 deletions _modules/mlx/warnings/robot_checker.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>mlx.warnings.robot_checker &#8212; warning-plugin 5.0.0 documentation</title>
<title>mlx.warnings.robot_checker &#8212; warning-plugin 5.1.0 documentation</title>
<link rel="stylesheet" type="text/css" href="../../../_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="../../../_static/pydoctheme.css" />

Expand All @@ -30,7 +30,7 @@
<h3>Navigation</h3>
<ul>
<li class="responsive-menu"><a href="#sidebar-anchor" title="Navigation">&#9776;</a></li>
<li><a href="../../../index.html">warning-plugin-5.0.0</a> &#187;</li>
<li><a href="../../../index.html">warning-plugin-5.1.0</a> &#187;</li>
<li><a href="../../index.html" accesskey="U">Module code</a> &#187;</li>
</ul>
</div>
Expand Down Expand Up @@ -268,7 +268,7 @@ <h3>Navigation</h3>

<div class="footer" role="contentinfo">
&#169; Copyright 2017-2019, Bavo Van Achte.
Last updated on Jan 12, 2024.
Last updated on Jan 17, 2024.
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 5.3.0.
</div>
</body>
Expand Down
9 changes: 6 additions & 3 deletions _modules/mlx/warnings/warnings.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>mlx.warnings.warnings &#8212; warning-plugin 5.0.0 documentation</title>
<title>mlx.warnings.warnings &#8212; warning-plugin 5.1.0 documentation</title>
<link rel="stylesheet" type="text/css" href="../../../_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="../../../_static/pydoctheme.css" />

Expand All @@ -30,7 +30,7 @@
<h3>Navigation</h3>
<ul>
<li class="responsive-menu"><a href="#sidebar-anchor" title="Navigation">&#9776;</a></li>
<li><a href="../../../index.html">warning-plugin-5.0.0</a> &#187;</li>
<li><a href="../../../index.html">warning-plugin-5.1.0</a> &#187;</li>
<li><a href="../../index.html" accesskey="U">Module code</a> &#187;</li>
</ul>
</div>
Expand Down Expand Up @@ -355,6 +355,9 @@ <h1>Source code for mlx.warnings.warnings</h1><div class="highlight"><pre>
<span class="k">if</span> <span class="p">(</span><span class="ow">not</span> <span class="n">args</span><span class="o">.</span><span class="n">ignore</span><span class="p">)</span> <span class="ow">and</span> <span class="p">(</span><span class="n">retval</span> <span class="o">!=</span> <span class="mi">0</span><span class="p">):</span>
<span class="k">return</span> <span class="n">retval</span>
<span class="k">else</span><span class="p">:</span>
<span class="k">if</span> <span class="n">args</span><span class="o">.</span><span class="n">flags</span><span class="p">:</span>
<span class="nb">print</span><span class="p">(</span><span class="sa">f</span><span class="s2">&quot;WARNING: Some keyword arguments have been ignored because they followed positional arguments: &quot;</span>
<span class="sa">f</span><span class="s2">&quot;</span><span class="si">{</span><span class="s1">&#39; &#39;</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="n">args</span><span class="o">.</span><span class="n">flags</span><span class="p">)</span><span class="si">!r}</span><span class="s2">&quot;</span><span class="p">)</span>
<span class="n">retval</span> <span class="o">=</span> <span class="n">warnings_logfile</span><span class="p">(</span><span class="n">warnings</span><span class="p">,</span> <span class="n">args</span><span class="o">.</span><span class="n">logfile</span><span class="p">)</span>
<span class="k">if</span> <span class="n">retval</span> <span class="o">!=</span> <span class="mi">0</span><span class="p">:</span>
<span class="k">return</span> <span class="n">retval</span>
Expand Down Expand Up @@ -501,7 +504,7 @@ <h3>Navigation</h3>

<div class="footer" role="contentinfo">
&#169; Copyright 2017-2019, Bavo Van Achte.
Last updated on Jan 12, 2024.
Last updated on Jan 17, 2024.
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 5.3.0.
</div>
</body>
Expand Down
6 changes: 3 additions & 3 deletions _modules/mlx/warnings/warnings_checker.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>mlx.warnings.warnings_checker &#8212; warning-plugin 5.0.0 documentation</title>
<title>mlx.warnings.warnings_checker &#8212; warning-plugin 5.1.0 documentation</title>
<link rel="stylesheet" type="text/css" href="../../../_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="../../../_static/pydoctheme.css" />

Expand All @@ -30,7 +30,7 @@
<h3>Navigation</h3>
<ul>
<li class="responsive-menu"><a href="#sidebar-anchor" title="Navigation">&#9776;</a></li>
<li><a href="../../../index.html">warning-plugin-5.0.0</a> &#187;</li>
<li><a href="../../../index.html">warning-plugin-5.1.0</a> &#187;</li>
<li><a href="../../index.html" accesskey="U">Module code</a> &#187;</li>
</ul>
</div>
Expand Down Expand Up @@ -306,7 +306,7 @@ <h3>Navigation</h3>

<div class="footer" role="contentinfo">
&#169; Copyright 2017-2019, Bavo Van Achte.
Last updated on Jan 12, 2024.
Last updated on Jan 17, 2024.
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 5.3.0.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion _static/documentation_options.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
VERSION: '5.0.0',
VERSION: '5.1.0',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
BUILDER: 'html',
Expand Down
6 changes: 3 additions & 3 deletions authors.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.19: https://docutils.sourceforge.io/" />

<title>Authors &#8212; warning-plugin 5.0.0 documentation</title>
<title>Authors &#8212; warning-plugin 5.1.0 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="_static/pydoctheme.css" />

Expand All @@ -32,7 +32,7 @@
<h3>Navigation</h3>
<ul>
<li class="responsive-menu"><a href="#sidebar-anchor" title="Navigation">&#9776;</a></li>
<li><a href="index.html">warning-plugin-5.0.0</a> &#187;</li>
<li><a href="index.html">warning-plugin-5.1.0</a> &#187;</li>
</ul>
</div>

Expand Down Expand Up @@ -125,7 +125,7 @@ <h3>Navigation</h3>

<div class="footer" role="contentinfo">
&#169; Copyright 2017-2019, Bavo Van Achte.
Last updated on Jan 12, 2024.
Last updated on Jan 17, 2024.
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 5.3.0.
</div>
</body>
Expand Down
6 changes: 3 additions & 3 deletions contributing.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.19: https://docutils.sourceforge.io/" />

<title>Contribution Guide &#8212; warning-plugin 5.0.0 documentation</title>
<title>Contribution Guide &#8212; warning-plugin 5.1.0 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="_static/pydoctheme.css" />

Expand Down Expand Up @@ -33,7 +33,7 @@
<h3>Navigation</h3>
<ul>
<li class="responsive-menu"><a href="#sidebar-anchor" title="Navigation">&#9776;</a></li>
<li><a href="index.html">warning-plugin-5.0.0</a> &#187;</li>
<li><a href="index.html">warning-plugin-5.1.0</a> &#187;</li>
</ul>
</div>

Expand Down Expand Up @@ -170,7 +170,7 @@ <h3>Navigation</h3>

<div class="footer" role="contentinfo">
&#169; Copyright 2017-2019, Bavo Van Achte.
Last updated on Jan 12, 2024.
Last updated on Jan 17, 2024.
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 5.3.0.
</div>
</body>
Expand Down
6 changes: 3 additions & 3 deletions design.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.19: https://docutils.sourceforge.io/" />

<title>Software Design &#8212; warning-plugin 5.0.0 documentation</title>
<title>Software Design &#8212; warning-plugin 5.1.0 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="_static/pydoctheme.css" />

Expand Down Expand Up @@ -33,7 +33,7 @@
<h3>Navigation</h3>
<ul>
<li class="responsive-menu"><a href="#sidebar-anchor" title="Navigation">&#9776;</a></li>
<li><a href="index.html">warning-plugin-5.0.0</a> &#187;</li>
<li><a href="index.html">warning-plugin-5.1.0</a> &#187;</li>
</ul>
</div>

Expand Down Expand Up @@ -787,7 +787,7 @@ <h3>Navigation</h3>

<div class="footer" role="contentinfo">
&#169; Copyright 2017-2019, Bavo Van Achte.
Last updated on Jan 12, 2024.
Last updated on Jan 17, 2024.
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 5.3.0.
</div>
</body>
Expand Down
6 changes: 3 additions & 3 deletions genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Index &#8212; warning-plugin 5.0.0 documentation</title>
<title>Index &#8212; warning-plugin 5.1.0 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="_static/pydoctheme.css" />

Expand All @@ -30,7 +30,7 @@
<h3>Navigation</h3>
<ul>
<li class="responsive-menu"><a href="#sidebar-anchor" title="Navigation">&#9776;</a></li>
<li><a href="index.html">warning-plugin-5.0.0</a> &#187;</li>
<li><a href="index.html">warning-plugin-5.1.0</a> &#187;</li>
</ul>
</div>

Expand Down Expand Up @@ -387,7 +387,7 @@ <h3>Navigation</h3>

<div class="footer" role="contentinfo">
&#169; Copyright 2017-2019, Bavo Van Achte.
Last updated on Jan 12, 2024.
Last updated on Jan 17, 2024.
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 5.3.0.
</div>
</body>
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.19: https://docutils.sourceforge.io/" />

<title>Contents &#8212; warning-plugin 5.0.0 documentation</title>
<title>Contents &#8212; warning-plugin 5.1.0 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="_static/pydoctheme.css" />

Expand All @@ -32,7 +32,7 @@
<h3>Navigation</h3>
<ul>
<li class="responsive-menu"><a href="#sidebar-anchor" title="Navigation">&#9776;</a></li>
<li><a href="#">warning-plugin-5.0.0</a> &#187;</li>
<li><a href="#">warning-plugin-5.1.0</a> &#187;</li>
</ul>
</div>

Expand Down Expand Up @@ -159,7 +159,7 @@ <h3>Navigation</h3>

<div class="footer" role="contentinfo">
&#169; Copyright 2017-2019, Bavo Van Achte.
Last updated on Jan 12, 2024.
Last updated on Jan 17, 2024.
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 5.3.0.
</div>
</body>
Expand Down
6 changes: 3 additions & 3 deletions installation.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.19: https://docutils.sourceforge.io/" />

<title>Installation Guide &#8212; warning-plugin 5.0.0 documentation</title>
<title>Installation Guide &#8212; warning-plugin 5.1.0 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="_static/pydoctheme.css" />

Expand Down Expand Up @@ -33,7 +33,7 @@
<h3>Navigation</h3>
<ul>
<li class="responsive-menu"><a href="#sidebar-anchor" title="Navigation">&#9776;</a></li>
<li><a href="index.html">warning-plugin-5.0.0</a> &#187;</li>
<li><a href="index.html">warning-plugin-5.1.0</a> &#187;</li>
</ul>
</div>

Expand Down Expand Up @@ -135,7 +135,7 @@ <h3>Navigation</h3>

<div class="footer" role="contentinfo">
&#169; Copyright 2017-2019, Bavo Van Achte.
Last updated on Jan 12, 2024.
Last updated on Jan 17, 2024.
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 5.3.0.
</div>
</body>
Expand Down
Binary file modified objects.inv
Binary file not shown.
Loading

0 comments on commit 2510af0

Please sign in to comment.