Skip to content

Commit 1a5133a

Browse files
committed
Bump to 7.0.0rc1 final
1 parent 5795fc7 commit 1a5133a

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
@@ -19,7 +19,7 @@
1919
warnings.filterwarnings('ignore', 'The frontend.Option class .*',
2020
DeprecationWarning, module='docutils.frontend')
2121

22-
__version__ = '7.0.0'
22+
__version__ = '7.0.0rc1'
2323
__display_version__ = __version__ # used for command line version
2424

2525
#: Version info for better programmatic use.
@@ -30,11 +30,11 @@
3030
#:
3131
#: .. versionadded:: 1.2
3232
#: Before version 1.2, check the string ``sphinx.__version__``.
33-
version_info = (7, 0, 0, 'beta', 0)
33+
version_info = (7, 0, 0, 'rc', 1)
3434

3535
package_dir = path.abspath(path.dirname(__file__))
3636

37-
_in_development = True
37+
_in_development = False
3838
if _in_development:
3939
# Only import subprocess if needed
4040
import subprocess

0 commit comments

Comments
 (0)