From 49479a68612f8d722147f72e9603b186460833c3 Mon Sep 17 00:00:00 2001 From: Akihiro Motoki Date: Tue, 19 Jun 2018 11:32:54 +0900 Subject: [PATCH] Declare django lower bound After 7e91070789187d9e6b5ac2b57ca755504e058e32 in openstack/requirements repo, all entries in project requirements.txt must have lower bound although we don't track lower bound in global-requirements.txt. This commit re-adds Django lower bound. Change-Id: I065e1bd904975f10bdcaacef7b0ad1336915492a --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index c80b776b0a..84918ccb68 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,8 +10,8 @@ pbr!=2.1.0,>=2.0.0 # Apache-2.0 # Horizon Core Requirements Babel!=2.4.0,>=2.3.4 # BSD -Django<2;python_version<'3.0' # BSD -Django<2.1;python_version>='3.0' # BSD +Django<2,>=1.11;python_version<'3.0' # BSD +Django<2.1,>=1.11;python_version>='3.0' # BSD django-babel>=0.6.2 # BSD django-compressor>=2.0 # MIT django-pyscss>=2.0.2 # BSD License (2 clause)