From 092bac7f9ca21afd3373a64544da40bab2cab4e0 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Tue, 16 Apr 2024 23:58:37 +0100 Subject: [PATCH] Bump to 7.3.0 final --- CHANGES.rst | 7 ++----- sphinx/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index d3edf4e8dd5..a641a1acb7d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,5 +1,5 @@ -Release 7.3.0 (in development) -============================== +Release 7.3.0 (released Apr 16, 2024) +===================================== Dependencies ------------ @@ -9,9 +9,6 @@ Dependencies .. _Docutils 0.21: https://docutils.sourceforge.io/RELEASE-NOTES.html#release-0-21-2024-04-09 * #12012: Use ``types-docutils`` instead of ``docutils-stubs``. -Incompatible changes --------------------- - Deprecated ---------- diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 9714e7f5f89..67c39c1382b 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -28,11 +28,11 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (7, 3, 0, 'beta', 0) +version_info = (7, 3, 0, 'final', 0) package_dir = path.abspath(path.dirname(__file__)) -_in_development = True +_in_development = False if _in_development: # Only import subprocess if needed import subprocess