From 6371f2e2fe3f089a64e1aa649f07ff61f1e04eec Mon Sep 17 00:00:00 2001
From: Amir MOHAMMADI <amir.mohammadi@idiap.ch>
Date: Fri, 1 Oct 2021 14:27:54 +0200
Subject: [PATCH] use sudo in yum install

---
 .gitlab-ci.yml                            | 2 +-
 bob/devtools/data/conda_build_config.yaml | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 67b446e4..dba82838 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -68,7 +68,7 @@ stages:
 build_linux_bob_devel:
   extends: .build_linux_template
   script:
-    - yum install -y mesa-libGL-devel  # need this for pyopengl
+    - sudo yum install -y mesa-libGL-devel  # need this for pyopengl
     - python3 ./bob/devtools/build.py -vv build-bob-devel
 
 build_linux_deps:
diff --git a/bob/devtools/data/conda_build_config.yaml b/bob/devtools/data/conda_build_config.yaml
index d473f2e3..e017a684 100644
--- a/bob/devtools/data/conda_build_config.yaml
+++ b/bob/devtools/data/conda_build_config.yaml
@@ -291,6 +291,10 @@ pin_run_as_build:
 # names here should not contain dots or dashes. You should replace dots and dashes with
 # underlines.
 
+# update this version to the current date when you modify the pins below
+bob_devel_version:
+  - 2021.10.01
+
 # AUTOMATIC PARSING START
 # DO NOT MODIFY THIS COMMENT
 
-- 
GitLab