Skip to content

Commit a5c48ae

Browse files
committed
deploy: 432b4eb
1 parent 5276297 commit a5c48ae

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.doctrees/environment.pickle

-22 Bytes
Binary file not shown.
-22 Bytes
Binary file not shown.

_sources/tutorials/installable-code.md.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -379,14 +379,14 @@ path = "src/pyospackage/__about__.py"
379379
Edit the file as follows:
380380

381381
1. Delete `dynamic = ["version"]`: This sets up dynamic versioning based on tags stored in your git commit history. We will walk through implementing this in a later lesson.
382-
2. Add `version = 0.1.0` in the place of `dynamic = ["version"]` which you just deleted. This sets up manual versioning.
382+
2. Add `version = "0.1.0"` in the place of `dynamic = ["version"]` which you just deleted. This sets up manual versioning.
383383
3. Fill in the description if it doesn't already exist.
384384

385385
```toml
386386
[project]
387387
name = "pyospackage"
388388
# dynamic = ["version"] <- replace this...
389-
version = 0.1 # with this
389+
version = "0.1" # with this
390390
description = 'A simple Python package that adds numbers together' # Add a description of your package if that is not already populated
391391
```
392392

@@ -417,8 +417,8 @@ To begin:
417417

418418
* Remove support for Python 3.8
419419

420-
Also because you are creating a pure Python package, you can
421-
in this lesson, you can remove the following classifiers:
420+
Since you are creating a pure Python package in this lesson,
421+
you can remove the following classifiers:
422422

423423
```toml
424424
classifiers = [

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.

tutorials/installable-code.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -838,13 +838,13 @@ <h2>Step 4: Modify metadata in your <code class="docutils literal notranslate"><
838838
<p>Edit the file as follows:</p>
839839
<ol class="arabic simple">
840840
<li><p>Delete <code class="docutils literal notranslate"><span class="pre">dynamic</span> <span class="pre">=</span> <span class="pre">[&quot;version&quot;]</span></code>: This sets up dynamic versioning based on tags stored in your git commit history. We will walk through implementing this in a later lesson.</p></li>
841-
<li><p>Add <code class="docutils literal notranslate"><span class="pre">version</span> <span class="pre">=</span> <span class="pre">0.1.0</span></code> in the place of <code class="docutils literal notranslate"><span class="pre">dynamic</span> <span class="pre">=</span> <span class="pre">[&quot;version&quot;]</span></code> which you just deleted. This sets up manual versioning.</p></li>
841+
<li><p>Add <code class="docutils literal notranslate"><span class="pre">version</span> <span class="pre">=</span> <span class="pre">&quot;0.1.0&quot;</span></code> in the place of <code class="docutils literal notranslate"><span class="pre">dynamic</span> <span class="pre">=</span> <span class="pre">[&quot;version&quot;]</span></code> which you just deleted. This sets up manual versioning.</p></li>
842842
<li><p>Fill in the description if it doesn’t already exist.</p></li>
843843
</ol>
844844
<div class="highlight-toml notranslate"><div class="highlight"><pre><span></span><span class="k">[project]</span>
845845
<span class="n">name</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">&quot;pyospackage&quot;</span>
846846
<span class="c1"># dynamic = [&quot;version&quot;] &lt;- replace this...</span>
847-
<span class="n">version</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="mf">0.1</span><span class="w"> </span><span class="c1"># with this</span>
847+
<span class="n">version</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">&quot;0.1&quot;</span><span class="w"> </span><span class="c1"># with this</span>
848848
<span class="n">description</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s1">&#39;A simple Python package that adds numbers together&#39;</span><span class="w"> </span><span class="c1"># Add a description of your package if that is not already populated</span>
849849
</pre></div>
850850
</div>
@@ -867,8 +867,8 @@ <h3>OPTIONAL: Adjust project classifiers<a class="headerlink" href="#optional-ad
867867
<ul class="simple">
868868
<li><p>Remove support for Python 3.8</p></li>
869869
</ul>
870-
<p>Also because you are creating a pure Python package, you can
871-
in this lesson, you can remove the following classifiers:</p>
870+
<p>Since you are creating a pure Python package in this lesson,
871+
you can remove the following classifiers:</p>
872872
<div class="highlight-toml notranslate"><div class="highlight"><pre><span></span><span class="n">classifiers</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="p">[</span>
873873
<span class="s2">&quot;Programming Language :: Python :: Implementation :: CPython&quot;</span><span class="p">,</span>
874874
<span class="s2">&quot;Programming Language :: Python :: Implementation :: PyPy&quot;</span><span class="p">,</span>

0 commit comments

Comments
 (0)