From 45d0cd5119a133e80bb0e98cd30a8d1949b23260 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20M=C3=B6bius?= <moebius@cs.rwth-aachen.de>
Date: Mon, 7 Mar 2022 14:56:14 +0100
Subject: [PATCH] Removed python 2.7 from the builds

---
 .gitlab-ci.yml | 47 -----------------------------------------------
 1 file changed, 47 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8a607c6..7d68ad3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -67,22 +67,6 @@ build-3.9-macos-m1:
     paths:
       - dist3/
 
-build-2.7-macos:
-  stage:
-    build
-  tags:
-    - Apple
-  variables:
-    GIT_SUBMODULE_STRATEGY: recursive
-  script:
-    - export PATH=/opt/local/bin:$PATH
-    - virtualenv -p python2.7 .
-    - source bin/activate
-    - python setup.py bdist_wheel --dist-dir dist2
-  artifacts:
-    paths:
-      - dist2/
-
 test-3.9-VS2017:
   stage:
     test
@@ -141,22 +125,6 @@ test-3.9-macos-m1:
     - pip install dist3/*.whl
     - cd tests
     - python -m unittest discover    
-    
-test-2.7-macos:
-  stage:
-    test
-  tags:
-    - Apple
-  dependencies:
-    - build-2.7-macos
-  needs: [build-2.7-macos]
-  script:
-    - export PATH=/opt/local/bin:$PATH
-    - virtualenv -p python2.7 .
-    - source bin/activate
-    - pip install dist2/*.whl
-    - cd tests
-    - python -m unittest discover
 
 deploy-3.9-VS2017:
   stage:
@@ -217,21 +185,6 @@ deploy-3.9-macos-m1:
     paths:
       - release/*.whl      
 
-deploy-2.7-macos:
-  stage:
-    deploy
-  tags:
-    - Apple
-  dependencies:
-    - build-2.7-macos
-  needs: [build-2.7-macos]
-  script:
-    - mkdir release
-    - cp dist2/*.whl release
-  artifacts:
-    paths:
-      - release/*.whl
-
 deploy-sdist:
   stage:
     deploy
-- 
GitLab