Skip to content

Commit a1c45b7

Browse files
author
github-actions-bot
committed
Update docs [skip ci]
1 parent 5f31df5 commit a1c45b7

7 files changed

+11
-11
lines changed

_sources/getting_started.rst.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Repo file structure
99
| * `workflows` implements continuous integration (CI) through GitHub 'actions' that are automatically run according to a chosen trigger. These are currently:
1010
| - `docs.yml` builds and deploys this docs site when a push is made to `main`.
1111
| - `format_lint.yml` lints and formats the code on each push using *ruff* and *black*.
12-
| - `package.yml` releases the package to PyPI on each *tagged* push to `main`. This makes the latest tagged version of the package `pip`-installable.
12+
| - `package.yml` releases the package to PyPI on each *release* (create a release from the repo's main GitHub page). This makes the latest release version of the package *pip*-installable. For a guide on how to first reserve a name for your project on PyPI (necessary for this workflow), see the `Python packaging guide <https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/>`_.
1313
| - `tests.yml` runs tests with *pytest* on each push.
1414
| - `type_check.yml` runs type checking with *mypy* on each push. The CI continues even if the type checker finds errors.
1515
| 2) `docs` has the files used to build the docs with *Sphinx*, with the site content in `index.rst` and `py_API.rst`.

coverage/class_index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ <h2>
5555
</h2>
5656
<p class="text">
5757
<a class="nav" href="https://coverage.readthedocs.io/en/7.5.4">coverage.py v7.5.4</a>,
58-
created at 2024-07-10 16:25 +0000
58+
created at 2024-07-10 16:36 +0000
5959
</p>
6060
</div>
6161
</header>
@@ -108,7 +108,7 @@ <h2>
108108
<div class="content">
109109
<p>
110110
<a class="nav" href="https://coverage.readthedocs.io/en/7.5.4">coverage.py v7.5.4</a>,
111-
created at 2024-07-10 16:25 +0000
111+
created at 2024-07-10 16:36 +0000
112112
</p>
113113
</div>
114114
<aside class="hidden">

coverage/function_index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ <h2>
5555
</h2>
5656
<p class="text">
5757
<a class="nav" href="https://coverage.readthedocs.io/en/7.5.4">coverage.py v7.5.4</a>,
58-
created at 2024-07-10 16:25 +0000
58+
created at 2024-07-10 16:36 +0000
5959
</p>
6060
</div>
6161
</header>
@@ -124,7 +124,7 @@ <h2>
124124
<div class="content">
125125
<p>
126126
<a class="nav" href="https://coverage.readthedocs.io/en/7.5.4">coverage.py v7.5.4</a>,
127-
created at 2024-07-10 16:25 +0000
127+
created at 2024-07-10 16:36 +0000
128128
</p>
129129
</div>
130130
<aside class="hidden">

coverage/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ <h2>
5454
</h2>
5555
<p class="text">
5656
<a class="nav" href="https://coverage.readthedocs.io/en/7.5.4">coverage.py v7.5.4</a>,
57-
created at 2024-07-10 16:25 +0000
57+
created at 2024-07-10 16:36 +0000
5858
</p>
5959
</div>
6060
</header>
@@ -96,7 +96,7 @@ <h2>
9696
<div class="content">
9797
<p>
9898
<a class="nav" href="https://coverage.readthedocs.io/en/7.5.4">coverage.py v7.5.4</a>,
99-
created at 2024-07-10 16:25 +0000
99+
created at 2024-07-10 16:36 +0000
100100
</p>
101101
</div>
102102
<aside class="hidden">

coverage/z_e6f4b5fa949e942d_example_module_py.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ <h2>
6565
<a id="nextFileLink" class="nav" href="index.html">&#xbb; next</a>
6666
&nbsp; &nbsp; &nbsp;
6767
<a class="nav" href="https://coverage.readthedocs.io/en/7.5.4">coverage.py v7.5.4</a>,
68-
created at 2024-07-10 16:25 +0000
68+
created at 2024-07-10 16:36 +0000
6969
</p>
7070
<aside class="hidden">
7171
<button type="button" class="button_next_chunk" data-shortcut="j"></button>
@@ -139,7 +139,7 @@ <h2>
139139
<a class="nav" href="index.html">&#xbb; next</a>
140140
&nbsp; &nbsp; &nbsp;
141141
<a class="nav" href="https://coverage.readthedocs.io/en/7.5.4">coverage.py v7.5.4</a>,
142-
created at 2024-07-10 16:25 +0000
142+
created at 2024-07-10 16:36 +0000
143143
</p>
144144
</div>
145145
</footer>

getting_started.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ <h2>Repo file structure<a class="headerlink" href="#repo-file-structure" title="
102102
<div class="line-block">
103103
<div class="line">- <code class="xref py py-obj docutils literal notranslate"><span class="pre">docs.yml</span></code> builds and deploys this docs site when a push is made to <code class="xref py py-obj docutils literal notranslate"><span class="pre">main</span></code>.</div>
104104
<div class="line">- <code class="xref py py-obj docutils literal notranslate"><span class="pre">format_lint.yml</span></code> lints and formats the code on each push using <em>ruff</em> and <em>black</em>.</div>
105-
<div class="line">- <code class="xref py py-obj docutils literal notranslate"><span class="pre">package.yml</span></code> releases the package to PyPI on each <em>tagged</em> push to <code class="xref py py-obj docutils literal notranslate"><span class="pre">main</span></code>. This makes the latest tagged version of the package <code class="xref py py-obj docutils literal notranslate"><span class="pre">pip</span></code>-installable.</div>
105+
<div class="line">- <code class="xref py py-obj docutils literal notranslate"><span class="pre">package.yml</span></code> releases the package to PyPI on each <em>release</em> (create a release from the repo’s main GitHub page). This makes the latest release version of the package <em>pip</em>-installable. For a guide on how to first reserve a name for your project on PyPI (necessary for this workflow), see the <a class="reference external" href="https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/">Python packaging guide</a>.</div>
106106
<div class="line">- <code class="xref py py-obj docutils literal notranslate"><span class="pre">tests.yml</span></code> runs tests with <em>pytest</em> on each push.</div>
107107
<div class="line">- <code class="xref py py-obj docutils literal notranslate"><span class="pre">type_check.yml</span></code> runs type checking with <em>mypy</em> on each push. The CI continues even if the type checker finds errors.</div>
108108
</div>

searchindex.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)