Skip to content

Commit 9096cb6

Browse files
committed
Bump version, improve backwards compat
1 parent 348e1c5 commit 9096cb6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pytest_sqlalchemy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def test_db(database_url, test_database_url):
4949
conn.execute('ROLLBACK')
5050

5151
try:
52-
conn.execute(f"DROP DATABASE {test_database_url.database}")
52+
conn.execute("DROP DATABASE {}".format(test_database_url.database))
5353
except ProgrammingError:
5454
pass
5555
finally:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def read(fname):
1313

1414
setup(
1515
name='pytest-sqlalchemy',
16-
version='0.1.0',
16+
version='0.2.0',
1717
author='Ben Harling',
1818
author_email='[email protected]',
1919
maintainer='Ben Harling',

0 commit comments

Comments
 (0)