Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update requirements
  • Loading branch information
kvesteri committed Jul 24, 2015
1 parent 69c9b91 commit 68e4b7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -64,8 +64,8 @@ def get_version():
include_package_data=True,
platforms='any',
install_requires=[
'SQLAlchemy>=0.9.4',
'SQLAlchemy-Utils>=0.27.11',
'SQLAlchemy>=1.0.8',
'SQLAlchemy-Utils>=0.30.12',
'ordereddict>=1.1'
if sys.version_info[0] == 2 and sys.version_info[1] < 7 else ''
],
Expand Down
5 changes: 1 addition & 4 deletions tests/test_exotic_operation_combos.py
Expand Up @@ -16,10 +16,7 @@ def test_insert_deleted_object(self):
self.session.commit()
assert article2.versions.count() == 2
assert article2.versions[0].operation_type == 0
if self.options['native_versioning']:
assert article2.versions[1].operation_type == 1
else:
assert article2.versions[1].operation_type == 0
assert article2.versions[1].operation_type == 1

def test_insert_deleted_and_flushed_object(self):
article = self.Article()
Expand Down

0 comments on commit 68e4b7b

Please sign in to comment.