Skip to content

Commit

Permalink
Bump version, improve backwards compat
Browse files Browse the repository at this point in the history
  • Loading branch information
bharling committed Aug 16, 2018
1 parent 348e1c5 commit 9096cb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pytest_sqlalchemy.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_db(database_url, test_database_url):
conn.execute('ROLLBACK')

try:
conn.execute(f"DROP DATABASE {test_database_url.database}")
conn.execute("DROP DATABASE {}".format(test_database_url.database))
except ProgrammingError:
pass
finally:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def read(fname):

setup(
name='pytest-sqlalchemy',
version='0.1.0',
version='0.2.0',
author='Ben Harling',
author_email='bharling@crowdcomms.co.uk',
maintainer='Ben Harling',
Expand Down

0 comments on commit 9096cb6

Please # to comment.