summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 523a5db0d..909a4ebda 100644
--- a/setup.py
+++ b/setup.py
@@ -114,7 +114,7 @@ with open(
os.path.dirname(__file__),
'lib', 'sqlalchemy', '__init__.py')) as v_file:
VERSION = re.compile(
- r".*__version__ = '(.*?)'",
+ r""".*__version__ = ["'](.*?)['"]""",
re.S).match(v_file.read()).group(1)
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as r_file: