File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -542,17 +542,17 @@ def tag(ctx: Context):
542542 with open (os .path .join (PYTHON_PACKAGE_NAME , "__init__.py" )) as file_handle :
543543 file_content = file_handle .read ()
544544 major_version = re .search (
545- " __major_version__\\ s+=\\ s+' (.*)'" , file_content
545+ ' __major_version__\\ s+=\\ s+" (.*)"' , file_content
546546 ).group ( # type: ignore[union-attr]
547547 1
548548 )
549549 minor_version = re .search (
550- " __minor_version__\\ s+=\\ s+' (.*)'" , file_content
550+ ' __minor_version__\\ s+=\\ s+" (.*)"' , file_content
551551 ).group ( # type: ignore[union-attr]
552552 1
553553 )
554554 change_version = re .search (
555- " __change_version__\\ s+=\\ s+' (.*)'" , file_content
555+ ' __change_version__\\ s+=\\ s+" (.*)"' , file_content
556556 ).group ( # type: ignore[union-attr]
557557 1
558558 )
You can’t perform that action at this time.
0 commit comments