Skip to content

Commit

Permalink
Pin SQLALchemy back to 1.3.0
Browse files Browse the repository at this point in the history
Seeing:
```
sqlalchemy.exc.InvalidRequestError: This session is in 'prepared' state; no further SQL can be emitted within this transaction.
```
errors after unpinning. Trying to get a stable build before I try
upgrading dependencies.
  • Loading branch information
jwon committed Feb 12, 2020
1 parent 0b9b57b commit 118a12c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
'ujson',
'requests',
'PyMySQL',
'SQLAlchemy',
'SQLAlchemy==1.3.0',
'Jinja2',
'Markdown',
'click',
Expand Down
2 changes: 1 addition & 1 deletion src/iris/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.8"
__version__ = "1.0.9"

0 comments on commit 118a12c

Please sign in to comment.