summary refs log tree commit diff
path: root/nixos/doc/manual
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-06-29 11:00:51 -0700
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-07-05 12:34:02 -0700
commit642b5ec6fdd50196830ddd713c7fd590ab2b34d0 (patch)
treed8d46eb2304ebc0ad2ce1c3396ed226c9168e67e /nixos/doc/manual
parent49235a4e50da3acabae1afaef04b0d59a3ee1249 (diff)
downloadnixpkgs-642b5ec6fdd50196830ddd713c7fd590ab2b34d0.tar
nixpkgs-642b5ec6fdd50196830ddd713c7fd590ab2b34d0.tar.gz
nixpkgs-642b5ec6fdd50196830ddd713c7fd590ab2b34d0.tar.bz2
nixpkgs-642b5ec6fdd50196830ddd713c7fd590ab2b34d0.tar.lz
nixpkgs-642b5ec6fdd50196830ddd713c7fd590ab2b34d0.tar.xz
nixpkgs-642b5ec6fdd50196830ddd713c7fd590ab2b34d0.tar.zst
nixpkgs-642b5ec6fdd50196830ddd713c7fd590ab2b34d0.zip
nixos/rl-notes/21.11: add python3 default bump entry
Diffstat (limited to 'nixos/doc/manual')
-rw-r--r--nixos/doc/manual/from_md/release-notes/rl-2111.section.xml16
-rw-r--r--nixos/doc/manual/release-notes/rl-2111.section.md4
2 files changed, 19 insertions, 1 deletions
diff --git a/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml b/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
index a95b1dd66b9..7860d21215b 100644
--- a/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
+++ b/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
@@ -14,12 +14,18 @@
   </itemizedlist>
   <section xml:id="sec-release-21.11-highlights">
     <title>Highlights</title>
-    <itemizedlist spacing="compact">
+    <itemizedlist>
       <listitem>
         <para>
           PHP now defaults to PHP 8.0, updated from 7.4.
         </para>
       </listitem>
+      <listitem>
+        <para>
+          <literal>python3</literal> now defaults to Python 3.9, updated
+          from Python 3.8.
+        </para>
+      </listitem>
     </itemizedlist>
   </section>
   <section xml:id="sec-release-21.11-new-services">
@@ -503,6 +509,14 @@
           <literal>rxvt-unicode</literal> explicitly.
         </para>
       </listitem>
+      <listitem>
+        <para>
+          <literal>python3</literal> now defaults to Python 3.9. Python
+          3.9 introduces many deprecation warnings, please look at the
+          <link xlink:href="https://docs.python.org/3/whatsnew/3.9.html">What’s
+          New In Python 3.9 post</link> for more information.
+        </para>
+      </listitem>
     </itemizedlist>
   </section>
 </section>
diff --git a/nixos/doc/manual/release-notes/rl-2111.section.md b/nixos/doc/manual/release-notes/rl-2111.section.md
index be46591dfa1..df5f84ed0b3 100644
--- a/nixos/doc/manual/release-notes/rl-2111.section.md
+++ b/nixos/doc/manual/release-notes/rl-2111.section.md
@@ -8,6 +8,8 @@ In addition to numerous new and upgraded packages, this release has the followin
 
 - PHP now defaults to PHP 8.0, updated from 7.4.
 
+- `python3` now defaults to Python 3.9, updated from Python 3.8.
+
 ## New Services {#sec-release-21.11-new-services}
 
 - [btrbk](https://digint.ch/btrbk/index.html), a backup tool for btrfs subvolumes, taking advantage of btrfs specific capabilities to create atomic snapshots and transfer them incrementally to your backup locations. Available as [services.btrbk](options.html#opt-services.brtbk.instances).
@@ -122,3 +124,5 @@ In addition to numerous new and upgraded packages, this release has the followin
   However, if [`services.fail2ban.enable`](options.html#opt-services.fail2ban.enable) is `true`, the `fail2ban` will override the verbosity to `"VERBOSE"`, so that `fail2ban` can observe the failed login attempts from the SSH logs.
 
 - Sway: The terminal emulator `rxvt-unicode` is no longer installed by default via `programs.sway.extraPackages`. The current default configuration uses `alacritty` (and soon `foot`) so this is only an issue when using a customized configuration and not installing `rxvt-unicode` explicitly.
+
+- `python3` now defaults to Python 3.9. Python 3.9 introduces many deprecation warnings, please look at the [What's New In Python 3.9 post](https://docs.python.org/3/whatsnew/3.9.html) for more information.