diff --git a/Jenkinsfile b/Jenkinsfile index c0376e68..8050c7b3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,7 +23,7 @@ pipeline { steps { script { if (env.JOB_NAME == 'chrono' && env.GIT_BRANCH == 'origin/master') { - sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder chrono' + sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder -d stretch chrono' } } } diff --git a/debian/control b/debian/control index e3104a65..c52ceb50 100644 --- a/debian/control +++ b/debian/control @@ -9,7 +9,7 @@ X-Python-Version: >= 2.7 Package: python-chrono Architecture: all Depends: ${misc:Depends}, ${python:Depends}, - python-django (>= 1.8), + python-django (>= 1:1.11), python-gadjo, python-requests Recommends: python-django-mellon diff --git a/setup.py b/setup.py index 2080b8d9..dcee4888 100644 --- a/setup.py +++ b/setup.py @@ -147,7 +147,7 @@ setup( 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 3', ], - install_requires=['django>=1.8, <1.12', + install_requires=['django>=1.11, <1.12', 'gadjo', 'djangorestframework>=3.1, <3.7', 'django-jsonfield >= 0.9.3', diff --git a/tox.ini b/tox.ini index ca59e91d..58926759 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py2-coverage-django18-pylint,{py2,py3}-coverage-django111 +envlist = py2-coverage-pylint,py3-coverage toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/chrono/{env:BRANCH_NAME:} [testenv] @@ -11,8 +11,6 @@ setenv = CHRONO_SETTINGS_FILE=tests/settings.py coverage: COVERAGE=--junitxml=test_results.xml --cov-report xml --cov-report html --cov=chrono/ deps = - django18: django>=1.8,<1.9 - django111: django>=1.11,<1.12 pytest-cov pytest-django pytest>=3.3.0,<4