build: declare django-ckeditor dependency (#27986)

This commit is contained in:
Frédéric Péters 2018-12-05 14:35:48 +01:00
parent cecaa3c437
commit 820ca97964
2 changed files with 5 additions and 2 deletions

View File

@ -26,7 +26,7 @@ _EOF_
$PIP_BIN install --upgrade setuptools
$PIP_BIN install --upgrade pytest WebTest mock pytest-cov pyquery pytest-django
$PIP_BIN install --upgrade 'pylint<1.8' # 1.8 broken (cf build #3023)
$PIP_BIN install --upgrade 'Django==1.8' 'gadjo'
$PIP_BIN install --upgrade 'Django==1.8' 'gadjo' 'django-ckeditor<4.5.3'
LC_ALL=C LC_TIME=C LANG=C PYTHONPATH=$(pwd):$PYTHONPATH venv/bin/py.test --junitxml=test_results.xml --cov-report xml --cov-report html --cov=wcs/ --cov-config .coveragerc -v tests/
test -f pylint.out && cp pylint.out pylint.out.prev

View File

@ -106,7 +106,10 @@ setup(
maintainer = "Frederic Peters",
maintainer_email = "fpeters@entrouvert.com",
url = "http://wcs.labs.libre-entreprise.org",
install_requires=['gadjo>=0.53'],
install_requires=[
'gadjo>=0.53',
'django-ckeditor<4.5.3',
],
package_dir = { 'wcs': 'wcs' },
packages = find_packages(),
cmdclass = cmdclass,