Skip to content

Commit 628442e

Browse files
committed
Group the version variables together
1 parent 466ccd0 commit 628442e

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
@@ -13,16 +13,16 @@
1313
if TYPE_CHECKING:
1414
from typing import Final
1515

16-
__version__: Final = '8.3.0'
17-
__display_version__: Final = __version__ # used for command line version
18-
1916
warnings.filterwarnings(
2017
'ignore',
2118
'The frontend.Option class .*',
2219
DeprecationWarning,
2320
module='docutils.frontend',
2421
)
2522

23+
__version__: Final = '8.3.0'
24+
__display_version__: Final = __version__ # used for command line version
25+
2626
#: Version info for better programmatic use.
2727
#:
2828
#: A tuple of five elements; for Sphinx version 1.2.1 beta 3 this would be

0 commit comments

Comments
 (0)