From 118a12c0e0f42233e14726cb94d3406d9341cb3a Mon Sep 17 00:00:00 2001 From: James Won Date: Wed, 12 Feb 2020 14:41:33 -0800 Subject: [PATCH] Pin SQLALchemy back to 1.3.0 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. --- setup.py | 2 +- src/iris/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2c829e3a..c83f58b8 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ 'ujson', 'requests', 'PyMySQL', - 'SQLAlchemy', + 'SQLAlchemy==1.3.0', 'Jinja2', 'Markdown', 'click', diff --git a/src/iris/__init__.py b/src/iris/__init__.py index e13bd590..39e0411d 100644 --- a/src/iris/__init__.py +++ b/src/iris/__init__.py @@ -1 +1 @@ -__version__ = "1.0.8" +__version__ = "1.0.9"