Skip to content

Commit

Permalink
avoid using sqlalchemy >=2
Browse files Browse the repository at this point in the history
The execute interface has changed, preventing us from running raw insert
queries
  • Loading branch information
razvancrainea committed Jul 30, 2024
1 parent 31c6fa3 commit 45bcccb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packaging/debian/compat
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9
10
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def run(self):
],
install_requires=[
'mysqlclient<1.4.0rc1',
'sqlalchemy>=1.3.3',
'sqlalchemy>=1.3.3,<2',
'sqlalchemy-utils'
],
classifiers = [
Expand Down

0 comments on commit 45bcccb

Please sign in to comment.