Skip to content

Commit fde6d3a

Browse files
committed
Website build
1 parent 64d6f9b commit fde6d3a

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

0_preface.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ <h2>Changes in the second and third editions<a class="headerlink" href="#changes
236236
workspaces in <a class="reference internal" href="2_programs_in_files.html#workspaces"><span class="std std-numref">Section 2.2.1</span></a>, and the Flake8 extension in
237237
<a class="reference internal" href="4_style.html#flake8-extension"><span class="std std-numref">Section 4.2.2</span></a>. Together, these provide correctly integrated code
238238
linting. It also consistently uses <code class="xref py py-obj docutils literal notranslate"><span class="pre">python</span> <span class="pre">-m</span></code> to invoke tools such as <code class="xref py py-obj docutils literal notranslate"><span class="pre">pip</span></code>,
239-
<a class="reference external" href="https://docs.pytest.org/en/latest/index.html#module-pytest" title="(in pytest v8.4.0.dev97)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">pytest</span></code></a> and <code class="xref py py-obj docutils literal notranslate"><span class="pre">flake8</span></code>. This is less error-prone for students. The description
239+
<a class="reference external" href="https://docs.pytest.org/en/latest/index.html#module-pytest" title="(in pytest v8.4.0.dev99)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">pytest</span></code></a> and <code class="xref py py-obj docutils literal notranslate"><span class="pre">flake8</span></code>. This is less error-prone for students. The description
240240
of <a class="reference external" href="https://docs.python.org/3/reference/compound_stmts.html#finally" title="(in Python v3.12)"><code class="xref std std-keyword docutils literal notranslate"><span class="pre">finally</span></code></a> in <a class="reference internal" href="6_exceptions.html#else-finally"><span class="std std-numref">Section 6.5.2</span></a> has been also improved.</p>
241241
</section>
242242
</section>

1_introduction.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
are:</p>
118118
<blockquote>
119119
<div><ol class="arabic simple">
120-
<li><p>Python version 3.8 or later (3.11 or later recommended).</p></li>
120+
<li><p>Python version 3.9 or later (3.11 or later recommended).</p></li>
121121
<li><p>Git (the revision control system we’re going to use).</p></li>
122122
<li><p>A Python-aware text editor or <a class="reference internal" href="#term-integrated-development-environment"><span class="xref std std-term">integrated development
123123
environment</span></a> (IDE). Visual Studio Code is recommended, and all the

2_programs_in_files.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ <h2><span class="section-number">2.5. </span>Testing frameworks<a class="headerl
716716
including tests in your code here.</p>
717717
<p>There are a number of Python packages which support code testing. The concepts
718718
are largely similar so rather than get bogged down in the details of multiple
719-
frameworks, we will introduce <a class="reference external" href="https://docs.pytest.org/en/latest/index.html" title="(in pytest v8.4.0.dev97)"><span class="xref std std-doc">Pytest</span></a>, which is one of the
719+
frameworks, we will introduce <a class="reference external" href="https://docs.pytest.org/en/latest/index.html" title="(in pytest v8.4.0.dev99)"><span class="xref std std-doc">Pytest</span></a>, which is one of the
720720
most widely used. Pytest is simply a Python package, so you can install it into
721721
your current environment using:</p>
722722
<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp gp-VirtualEnv">(PoP_venv)</span> <span class="gp">$ </span>python<span class="w"> </span>-m<span class="w"> </span>pip<span class="w"> </span>install<span class="w"> </span>pytest

_sources/1_introduction.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ tools. At various points you'll also need install several more Python packages,
6565
but you don't need to install those right now. The core tools you will need
6666
are:
6767

68-
1. Python version 3.8 or later (3.11 or later recommended).
68+
1. Python version 3.9 or later (3.11 or later recommended).
6969
2. Git (the revision control system we're going to use).
7070
3. A Python-aware text editor or :term:`integrated development
7171
environment` (IDE). Visual Studio Code is recommended, and all the

_sources/installation.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Windows
4545
.......
4646

4747
Install `Python from the Microsoft Store
48-
<https://apps.microsoft.com/store/detail/python-311/9NRWMJP3717K>`__.
48+
<https://apps.microsoft.com/detail/9ncvdn91xzqp>`__.
4949

5050
MacOS
5151
.....
@@ -55,7 +55,7 @@ purposes. Instead, install Python from Homebrew:
5555

5656
.. code-block:: console
5757
58-
$ brew install python3.11
58+
$ brew install python3.12
5959
6060
6161
Linux

installation.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,13 @@ <h2>Python<a class="headerlink" href="#python" title="Link to this heading">¶</
8989
sufficiently recent Python should be sufficient.</p>
9090
<section id="windows">
9191
<h3>Windows<a class="headerlink" href="#windows" title="Link to this heading"></a></h3>
92-
<p>Install <a class="reference external" href="https://apps.microsoft.com/store/detail/python-311/9NRWMJP3717K">Python from the Microsoft Store</a>.</p>
92+
<p>Install <a class="reference external" href="https://apps.microsoft.com/detail/9ncvdn91xzqp">Python from the Microsoft Store</a>.</p>
9393
</section>
9494
<section id="macos">
9595
<h3>MacOS<a class="headerlink" href="#macos" title="Link to this heading"></a></h3>
9696
<p>MacOS comes with Python 3, but it’s a cut down version not suitable for our
9797
purposes. Instead, install Python from Homebrew:</p>
98-
<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$ </span>brew<span class="w"> </span>install<span class="w"> </span>python3.11
98+
<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$ </span>brew<span class="w"> </span>install<span class="w"> </span>python3.12
9999
</pre></div>
100100
</div>
101101
</section>

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)