Skip to content

Commit c3a00be

Browse files
committed
update pypi setup 📝
1 parent b8131b9 commit c3a00be

File tree

4 files changed

+2
-1
lines changed

4 files changed

+2
-1
lines changed

db/migrations.db

0 Bytes
Binary file not shown.

db/pandas_oop.db

0 Bytes
Binary file not shown.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="pandas-oop",
8-
version="0.9.1",
8+
version="0.9.2",
99
author="Mayas Nova",
1010
author_email="[email protected]",
1111
description="Pandas dataframes with object oriented programming style",

tests/test_db_migrations_and_sqlalchemy_behavior.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ def test_save_without_pk_no_error(self):
5151
people = PeopleMigrations()
5252
people.name = ['John', 'Snow', 'Armin']
5353
people.save()
54+
people.sql_engine.execute('delete from people_migrations')
5455

5556
def test_save_with_pk(self):
5657
people = PeopleMigrationsWithPrimaryKey()

0 commit comments

Comments
 (0)