Skip to content
This repository was archived by the owner on Feb 27, 2023. It is now read-only.

Commit 2fa6deb

Browse files
committed
Fix setup
Signed-off-by: Uilian Ries <[email protected]>
1 parent 232115c commit 2fa6deb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def load_version():
3434
"bintray", "bintray.py"))
3535
with open(filename, "rt") as version_file:
3636
conan_init = version_file.read()
37-
version = re.search("__version__ = '([0-9a-z.-]+)'", conan_init).group(1)
37+
version = re.search('__version__ = "([0-9a-z.-]+)"', conan_init).group(1)
3838
return version
3939

4040
setup(

0 commit comments

Comments
 (0)