Skip to content

Commit d193814

Browse files
committed
Fix version extraction
1 parent a9cb74e commit d193814

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.conan/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def stable_branch_pattern(self):
5454
def reference(self):
5555
""" Read project version from CMake file to create Conan referece
5656
"""
57-
pattern = re.compile(r"project \(taocpp-operators VERSION (\d+\.\d+\.\d+) LANGUAGES CXX\)")
57+
pattern = re.compile(r"project\(taocpp-operators VERSION (\d+\.\d+\.\d+) LANGUAGES CXX\)")
5858
version = None
5959
with open('CMakeLists.txt') as file:
6060
for line in file:

0 commit comments

Comments
 (0)