# HG changeset patch # User Mads Kiilerich # Date 2020-01-04 00:23:15 # Node ID 82f16ad89d8a692f55ce39512bacb3773bdc7829 # Parent b015fa0bfecb2333e29b0f4463ee6402701b1d13 setup: bump alembic minimum version to 1.0.10 to get rid of py3 warning Avoid verbose warning: .../site-packages/alembic/util/langhelpers.py:92: DeprecationWarning: `formatargspec` is deprecated since Python 3.5. Use `signature` and the `Signature` object directly formatvalue=lambda x: '=' + x) diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ __platform__ = platform.system() is_windows = __platform__ in ['Windows'] requirements = [ - "alembic >= 0.8.0, < 1.1", + "alembic >= 1.0.10, < 1.1", "gearbox >= 0.1.0, < 1", "waitress >= 0.8.8, < 1.4", "WebOb >= 1.8, < 1.9",