# HG changeset patch # User Mads Kiilerich # Date 2020-01-03 22:59:15 # Node ID 390b99920d022abf453bc4c32b15e128f333cbe1 # Parent fd59e56301a8c1ade50c0cae32e4a3703cb9cba5 setup: bump beaker minimum version to 1.10.1 to get py3 support 1.10.0 failed on py3 because it was using the reserved async keyword: File ".../build/minimum-dependency-versions-venv/lib/python3.7/site-packages/beaker/synchronization.py", line 289 self.async = 0 ^ SyntaxError: invalid syntax diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ requirements = [ "backlash >= 0.1.2, < 1", "TurboGears2 >= 2.4, < 2.5", "tgext.routes >= 0.2.0, < 1", - "Beaker >= 1.7.0, < 2", + "Beaker >= 1.10.1, < 2", "WebHelpers2 >= 2.0, < 2.1", "FormEncode >= 1.3.1, < 1.4", "SQLAlchemy >= 1.1, < 1.4",