diff --git a/.travis.yml b/.travis.yml index 199631e..52d329a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,14 +25,6 @@ "env": "BUILD=style", "python": "3.6" }, - { - "env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=devel ", - "python": "3.5" - }, - { - "env": "BUILD=test DAV_SERVER=xandikos REQUIREMENTS=devel ", - "python": "3.5" - }, { "env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=release ", "python": "3.5" @@ -49,14 +41,6 @@ "env": "BUILD=test DAV_SERVER=xandikos REQUIREMENTS=minimal ", "python": "3.5" }, - { - "env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=devel ", - "python": "3.6" - }, - { - "env": "BUILD=test DAV_SERVER=xandikos REQUIREMENTS=devel ", - "python": "3.6" - }, { "env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=release ", "python": "3.6" diff --git a/scripts/make_travisconf.py b/scripts/make_travisconf.py index 07538c5..f2e4cc5 100644 --- a/scripts/make_travisconf.py +++ b/scripts/make_travisconf.py @@ -39,8 +39,11 @@ matrix.append({ }) -for python, requirements in itertools.product(python_versions, - ("devel", "release", "minimal")): +for python, requirements in itertools.product( + python_versions, + # XXX: Use `devel` here for recent python versions: + ("release", "minimal") +): dav_servers = ("radicale", "xandikos") if python == latest_python and requirements == "release":