From e83297f039c5dacdffe2b00267c2dbf0a66d9285 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Domaga=C5=82a?= Date: Wed, 25 Nov 2020 19:58:07 +0100 Subject: [PATCH] SIO-2391 Package bsddb3 version 6.2.8 crushes docker image build. Fixed by setting version constrain to 6.2.7 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c4d8177..cbd0836 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ packages = find_packages(), install_requires = [ - 'bsddb3', + 'bsddb3==6.2.7', 'flup6', 'gunicorn==19.8.1', 'gevent==1.3.1',