pin isort to 4.3.21, cap sphinx

isort 4.3.21 is the last isort release that supports python2
sphinx on python2 requires <2.0.0

Change-Id: Ie09391eaad5f556a8ca78219fe268bc3801bbc36
This commit is contained in:
Gregory Thiemonge 2020-10-06 13:54:14 +02:00 committed by Michael Johnson
parent 0fa0b98ca8
commit 084115483e
3 changed files with 7 additions and 2 deletions

View File

@ -1,4 +1,5 @@
sphinx!=1.6.6,!=1.6.7,>=1.6.2 # BSD
sphinx!=1.6.6,!=1.6.7,<2.0.0;python_version=='2.7' # BSD
sphinx>=2.0.0,!=2.1.0;python_version>='3.4' # BSD
openstackdocstheme>=1.18.1 # Apache-2.0
# releasenotes
reno>=2.5.0 # Apache-2.0

View File

@ -2,6 +2,7 @@ bandit==1.4.0
coverage==4.0
doc8==0.6.0
hacking==0.12.0
isort==4.3.21
mock==2.0.0
oslo.i18n==3.15.3
oslo.log==3.36.0

View File

@ -8,7 +8,10 @@ bandit>=1.1.0 # Apache-2.0
coverage>=4.0,!=4.4 # Apache-2.0
doc8>=0.6.0 # Apache-2.0
mock>=2.0.0 # BSD
pylint==1.9.2 # GPLv2
pylint==1.9.2;python_version<'3.0' # GPLv2
pylint>=1.9.2,<=2.5.3;python_version>='3.0' # GPLv2
# Workaround for pylint dependency issue with py2.7
isort==4.3.21;python_version=='2.7' # MIT
python-subunit>=1.0.0 # Apache-2.0/BSD
oslo.utils>=3.33.0 # Apache-2.0
oslotest>=3.2.0 # Apache-2.0