From b92a6f378bc81890ed2c1c70c84bce687238b617 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Mar 08 2019 09:47:48 +0000 Subject: Add a upper limit to sqlalchemy as 1.3.0 breaks our tests Signed-off-by: Pierre-Yves Chibon --- diff --git a/requirements.txt b/requirements.txt index 996fb06..c877d94 100644 --- a/requirements.txt +++ b/requirements.txt @@ -26,7 +26,12 @@ python-openid-teams redis requests six -sqlalchemy >= 0.8 +# sqlalchemy minimum 0.8 +# sqlalchemy 1.3.0 is causing issues on the pip container leading +# test_pagure_lib.py to raise a: +# "(sqlite3.OperationalError) no such column: users.user" +# in test_search_projects_private line 319 +sqlalchemy < 1.3.0 # 1.4.0 is broken, 1.4.0-post-1 works but gives odd results on newer setuptools # the latest version 1.5.0 is also known to work straight.plugin