From ace5744b82345150baf3c71d6f47a257c89001ec Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Wed, 24 Jul 2024 21:12:05 +0100 Subject: [PATCH] Bump to 8.0.0 candidate 1 --- sphinx/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 74975b4ec3e..214d9685147 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -1,6 +1,6 @@ """The Sphinx documentation toolchain.""" -__version__ = '8.0.0' +__version__ = '8.0.0rc1' __display_version__ = __version__ # used for command line version # Keep this file executable as-is in Python 3! @@ -27,11 +27,11 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (8, 0, 0, 'beta', 0) +version_info = (8, 0, 0, 'candidate', 1) package_dir = os.path.abspath(os.path.dirname(__file__)) -_in_development = True +_in_development = False if _in_development: # Only import subprocess if needed import subprocess