Skip to content

Commit a223b8e

Browse files
committed
deploy: b75225d
1 parent 589c6c7 commit a223b8e

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

_sources/index.md.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ tools, including:
1717
- [Pre-commit hooks](https://pre-commit.com/) to maintain code
1818
quality.
1919
- Automatic versioning with
20-
[setuptools_scm](https://setuptools-scm.readthedocs.io/en/latest/).
20+
[setuptools-scm](https://setuptools-scm.readthedocs.io/en/latest/).
2121
- A test setup using [pytest](https://docs.pytest.org/en/7.0.x/).
2222
- Automated formatting, testing, and publishing via [GitHub
2323
Actions](https://github.com/features/actions).

_sources/infrastructure.md.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ We recommend the use of [semantic versioning](https://semver.org/), which uses a
9494
* MAJOR = breaking change
9595

9696
## Automated versioning
97-
[`setuptools_scm`](https://github.com/pypa/setuptools_scm) can be used to automatically version your package. It has been pre-configured in the `pyproject.toml` file. [`setuptools_scm` will automatically infer the version using git](https://github.com/pypa/setuptools_scm#default-versioning-scheme). To manually set a new semantic version, create a tag and make sure the tag is pushed to GitHub. Make sure you commit any changes you wish to be included in this version. E.g. to bump the version to `1.0.0`:
97+
[`setuptools-scm`](https://github.com/pypa/setuptools_scm) can be used to automatically version your package. It has been pre-configured in the `pyproject.toml` file. [`setuptools-scm` will automatically infer the version using git](https://github.com/pypa/setuptools_scm#default-versioning-scheme). To manually set a new semantic version, create a tag and make sure the tag is pushed to GitHub. Make sure you commit any changes you wish to be included in this version. E.g. to bump the version to `1.0.0`:
9898

9999
```sh
100100
git add .

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ <h2>Getting Started<a class="headerlink" href="#getting-started" title="Link to
372372
<li><p><a class="reference external" href="https://pre-commit.com/">Pre-commit hooks</a> to maintain code
373373
quality.</p></li>
374374
<li><p>Automatic versioning with
375-
<a class="reference external" href="https://setuptools-scm.readthedocs.io/en/latest/">setuptools_scm</a>.</p></li>
375+
<a class="reference external" href="https://setuptools-scm.readthedocs.io/en/latest/">setuptools-scm</a>.</p></li>
376376
<li><p>A test setup using <a class="reference external" href="https://docs.pytest.org/en/7.0.x/">pytest</a>.</p></li>
377377
<li><p>Automated formatting, testing, and publishing via <a class="reference external" href="https://github.com/features/actions">GitHub
378378
Actions</a>.</p></li>

infrastructure.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ <h1>Versioning<a class="headerlink" href="#versioning" title="Link to this headi
515515
</ul>
516516
<section id="automated-versioning">
517517
<h2>Automated versioning<a class="headerlink" href="#automated-versioning" title="Link to this heading">#</a></h2>
518-
<p><a class="reference external" href="https://github.com/pypa/setuptools_scm"><code class="docutils literal notranslate"><span class="pre">setuptools_scm</span></code></a> can be used to automatically version your package. It has been pre-configured in the <code class="docutils literal notranslate"><span class="pre">pyproject.toml</span></code> file. <a class="reference external" href="https://github.com/pypa/setuptools_scm#default-versioning-scheme"><code class="docutils literal notranslate"><span class="pre">setuptools_scm</span></code> will automatically infer the version using git</a>. To manually set a new semantic version, create a tag and make sure the tag is pushed to GitHub. Make sure you commit any changes you wish to be included in this version. E.g. to bump the version to <code class="docutils literal notranslate"><span class="pre">1.0.0</span></code>:</p>
518+
<p><a class="reference external" href="https://github.com/pypa/setuptools_scm"><code class="docutils literal notranslate"><span class="pre">setuptools-scm</span></code></a> can be used to automatically version your package. It has been pre-configured in the <code class="docutils literal notranslate"><span class="pre">pyproject.toml</span></code> file. <a class="reference external" href="https://github.com/pypa/setuptools_scm#default-versioning-scheme"><code class="docutils literal notranslate"><span class="pre">setuptools-scm</span></code> will automatically infer the version using git</a>. To manually set a new semantic version, create a tag and make sure the tag is pushed to GitHub. Make sure you commit any changes you wish to be included in this version. E.g. to bump the version to <code class="docutils literal notranslate"><span class="pre">1.0.0</span></code>:</p>
519519
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span>git<span class="w"> </span>add<span class="w"> </span>.
520520
git<span class="w"> </span>commit<span class="w"> </span>-m<span class="w"> </span><span class="s2">&quot;Add new changes&quot;</span>
521521
git<span class="w"> </span>tag<span class="w"> </span>-a<span class="w"> </span>v1.0.0<span class="w"> </span>-m<span class="w"> </span><span class="s2">&quot;Bump to version 1.0.0&quot;</span>

searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)