diff options
author | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2023-04-25 11:53:35 +0100 |
---|---|---|
committer | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2023-04-25 11:53:35 +0100 |
commit | bc04444cb815f99d2bc18ab11aefa6f29090d7af (patch) | |
tree | 2ab34ae484b7db2e485119c9526d128a5dc884ec /sphinx | |
parent | ec993dda3690f260345133c47a4a0f6ef0b18493 (diff) | |
download | sphinx-git-bc04444cb815f99d2bc18ab11aefa6f29090d7af.tar.gz |
Bump version
Diffstat (limited to 'sphinx')
-rw-r--r-- | sphinx/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sphinx/__init__.py b/sphinx/__init__.py index da649fbdf..abed78c1d 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -19,7 +19,7 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated", warnings.filterwarnings('ignore', 'The frontend.Option class .*', DeprecationWarning, module='docutils.frontend') -__version__ = '6.2.1' +__version__ = '6.2.2' __display_version__ = __version__ # used for command line version #: Version info for better programmatic use. @@ -30,11 +30,11 @@ __display_version__ = __version__ # used for command line version #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (6, 2, 1, 'final', 0) +version_info = (6, 2, 2, 'beta', 0) package_dir = path.abspath(path.dirname(__file__)) -_in_development = False +_in_development = True if _in_development: # Only import subprocess if needed import subprocess |