Skip to content

Commit 17380a5

Browse files
committed
Bump to 9.0.0 candidate 4
1 parent 4a3bd13 commit 17380a5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sphinx/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
if TYPE_CHECKING:
1212
from typing import Final
1313

14-
__version__: Final = '9.0.0rc3'
14+
__version__: Final = '9.0.0rc4'
1515
__display_version__: Final = __version__ # used for command line version
1616

1717
#: Version info for better programmatic use.
@@ -22,12 +22,12 @@
2222
#:
2323
#: .. versionadded:: 1.2
2424
#: Before version 1.2, check the string ``sphinx.__version__``.
25-
version_info: Final = (9, 0, 0, 'candidate', 3)
25+
version_info: Final = (9, 0, 0, 'candidate', 4)
2626

2727
package_dir: Final = _StrPath(__file__).resolve().parent
2828
del _StrPath
2929

30-
_in_development = True
30+
_in_development = False
3131
if _in_development:
3232
# Only import subprocess if needed
3333
import subprocess

0 commit comments

Comments
 (0)