Skip to content

Commit e49fe04

Browse files
committed
tests: (extra) Update SQLAlchemy in standalone script.
[ci skip]
1 parent 21c1c96 commit e49fe04

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/run_sqlalchemy_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import tarfile
77
import urllib
88

9-
SQLALCHEMY_VERSION = "0.8.0b2"
9+
SQLALCHEMY_VERSION = "1.0.11"
1010
SQLALCHEMY_DIR = "SQLAlchemy-%s" % SQLALCHEMY_VERSION
1111
SQLALCHEMY_TAR_GZ = "%s.tar.gz" % SQLALCHEMY_DIR
1212
SQLALCHEMY_TAR_GZ_URL = "http://pypi.python.org/packages/source/S/SQLAlchemy/%s" % SQLALCHEMY_TAR_GZ
@@ -31,7 +31,7 @@ def run_sqlalchemy_tests():
3131
if dburi:
3232
sys.argv.append('--dburi=%s' % dburi)
3333

34-
os.chdir('SQLAlchemy-0.8.0b2')
34+
os.chdir('SQLAlchemy-%s' % SQLALCHEMY_VERSION)
3535
sys.path.append('.')
3636
sys.stdout.write('Running SQLAlchemy tests...\n\n')
3737
sys.stdout.flush()

0 commit comments

Comments
 (0)