diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2106a6e6faa0068712280984137ffae526fea9de..6fd60a02decd37d763ba1da8cd36c24ceb45d343 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -42,11 +42,13 @@ build: &build
   <<: *env
   stage: build
   script:
+    - pip install wheel
     - pip install -r requirements.txt
     - python gen_resources.py
     - python gen_translations.py --lrelease
-    - python setup.py sdist bdist_wheel
+    - python setup.py bdist_wheel
     - py.test
+
 test:
   <<: *env
   stage: test
@@ -65,5 +67,5 @@ releases:
     - pip install -r requirements.txt
     - pip install wheel
     - pip install twine
-    - python setup.py sdist bdist_wheel
+    - python setup.py bdist_wheel
     - twine upload dist/* --username duniter --password $PYPI_PASSWORD