Skip to content

Commit 76e62b2

Browse files
committedApr 26, 2023
find_version: use + for git_hash to conform to PEP 440
1 parent 2a76f21 commit 76e62b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎find_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
else:
6666
# local version identifier, not to be published on PyPI
6767
version = git_hash
68-
opencv_version += ".{}".format(version)
68+
opencv_version += "+{}".format(version)
6969

7070
with open("cv2/version.py", "w") as f:
7171
f.write('opencv_version = "{}"\n'.format(opencv_version))

0 commit comments

Comments
 (0)
Please sign in to comment.