Skip to content
Snippets Groups Projects
Commit 74f2f657 authored by Marco Clemencic's avatar Marco Clemencic
Browse files

Fix the way utils/update_version.py patches docs/source/conf.py

parent 28af5b55
No related branches found
No related tags found
1 merge request!1506Bump version to v37r1
......@@ -213,8 +213,8 @@ def update_version(version: str, date: datetime.datetime, dry_run: bool):
FileUpdater(
"docs/source/conf.py",
[
(r"^version = ", "version = {cmake_version}"),
(r"^release = ", "release = {tag_version}"),
(r"^version = ", 'version = "{cmake_version}"'),
(r"^release = ", 'release = "{tag_version}"'),
],
),
update_changelog,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment