diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fd4eff3f5e8ee879590f868637879927b9941fca..fa0835cc6f70e7ced2f983981bf3297935b18ca2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,28 +3,41 @@
 # https://hub.docker.com/r/library/python/tags/
 image: python:3.6
 
-python3.5:
-    image: python:3.5
+python3.6:
+    image: python:3.6
     stage: test
-    tags: [qlf-ci.inria.fr]
     script:
     - pip install tox
-    - tox -e py35
+    - tox -e py36
     - tox -e pep8
 
-python3.6:
-    image: python:3.6
+python3.7:
+    image: python:3.7
     stage: test
-    tags: [qlf-ci.inria.fr]
     script:
     - pip install tox
-    - tox -e py36
+    - tox -e py37
+    - tox -e pep8
+
+python3.8:
+    image: python:3.8
+    stage: test
+    script:
+    - pip install tox
+    - tox -e py37
+    - tox -e pep8
+
+python3.9:
+    image: python:3.9
+    stage: test
+    script:
+    - pip install tox
+    - tox -e py37
     - tox -e pep8
 
 python2.7:
     image: python:2.7
     stage: test
-    tags: [qlf-ci.inria.fr]
     script:
     - pip install tox
     - tox -e py27 pep8
diff --git a/tox.ini b/tox.ini
index 0a346506f6f1f85d84930ab3858e969865428a7b..2c7dc412445b55e8adb5a86d9837e2aa7b5d8407 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,4 +1,3 @@
-# tox -epy27
 [tox]
 skipsdist = True
 envlist = pep8