From: Neil Muller <drnlmuller+debian@gmail.com>
Date: Sat, 5 Jan 2019 15:57:51 +0200
Subject: Change the formencode versions to work with the debian version.

The issues with FormEncode 1.3.0 that the requires are trying
to avoid do not apply to the debian package, and keeping this
requirement in place can cause problems with packages using
the debian versions, so we change the requirement to 1.3.0 or later.
---
 setup.py                        |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup.py b/setup.py
index b0fb383..eac9aee 100755
--- a/setup.py
+++ b/setup.py
@@ -87,8 +87,8 @@ and `GitHub <https://github.com/sqlobject>`_.
     python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
     requires=['FormEncode', 'PyDispatcher'],
     install_requires=[
-        "FormEncode>=1.1.1,!=1.3.0; python_version=='2.7'",
-        "FormEncode>=1.3.1; python_version>='3.4'",
+        "FormEncode>=1.3.0; python_version=='2.7'",
+        "FormEncode>=1.3.0; python_version>='3.4'",
         "PyDispatcher>=2.0.4",
     ],
     extras_require={
