diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 31a3c63783f201f2f18a91545b0ce6b807eea1ca..b71bfae7bfea67f09971f945ca7a74664c2b60fa 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,6 +2,7 @@ image: irmb/virtualfluids-python-deps
 
 stages:
   - build
+  - build_python
   - test
   - analyze
   - deploy
@@ -55,21 +56,6 @@ gcc_9:
 
 ###############################################################################
 
-gcc_9_python:
-  stage: build
-
-  needs: ["gcc_9"]
-
-  artifacts:
-    paths:
-      - build/
-      - dist/
-
-  script:
-    - python3 setup.py bdist_wheel
-
-###############################################################################
-
 clang_10:
   extends: .gnu_build_template
 
@@ -177,6 +163,24 @@ build_singularity_image:
     - singularity build --fakeroot Containers/VirtualFluidsOpenMPI.sif Containers/VirtualFluidsOpenMPI.def
     - ls -sh Containers/VirtualFluidsOpenMPI.sif
 
+
+###############################################################################
+##                             Build Python                                  ##
+###############################################################################
+
+gcc_9_python:
+  stage: build_python
+
+  needs: ["gcc_9"]
+
+  artifacts:
+    paths:
+      - build/
+      - dist/
+
+  script:
+    - python3 setup.py bdist_wheel
+
 ###############################################################################
 ##                                Tests                                      ##
 ###############################################################################