From 4e03bbcdf01d96e01dc42e79e7c05631789b3d44 Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.dos.anjos@gmail.com>
Date: Sat, 10 Apr 2021 11:51:59 +0200
Subject: [PATCH] [bootstrap] Update to latest miniconda installer (4.9.2); Use
 python=3.9 for bdt installation; Update python-gitlab and docformatter
 dependencies

---
 bob/devtools/bootstrap.py    | 6 +++---
 deps/docformatter/meta.yaml  | 2 +-
 deps/python-gitlab/meta.yaml | 5 +++--
 3 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/bob/devtools/bootstrap.py b/bob/devtools/bootstrap.py
index 6963d6a7..e21cecda 100644
--- a/bob/devtools/bootstrap.py
+++ b/bob/devtools/bootstrap.py
@@ -206,12 +206,12 @@ def ensure_miniconda_sh():
 
     # WARNING: if you update this version, remember to update hashes below
     # AND our "mirror" in the internal webserver
-    path = "/miniconda/Miniconda3-py37_4.8.2-%s-x86_64.sh"
+    path = "/miniconda/Miniconda3-py39_4.9.2-%s-x86_64.sh"
     if platform.system() == "Darwin":
-        md5sum = "e0320c20ea13d04407424ecf57b70eaf"
+        md5sum = "0658832393a50f5a578bcad825304886"
         path = path % "MacOSX"
     else:
-        md5sum = "87e77f097f6ebb5127c77662dfc3165e"
+        md5sum = "b4e46fcc8029e2cfa731b788f25b1d36"
         path = path % "Linux"
 
     if os.path.exists("miniconda.sh"):
diff --git a/deps/docformatter/meta.yaml b/deps/docformatter/meta.yaml
index 02c8d25e..6455771b 100644
--- a/deps/docformatter/meta.yaml
+++ b/deps/docformatter/meta.yaml
@@ -1,4 +1,4 @@
-{% set version = "1.3.1" %}
+{% set version = "1.4" %}
 
 package:
   name: docformatter
diff --git a/deps/python-gitlab/meta.yaml b/deps/python-gitlab/meta.yaml
index af639199..55d83f1b 100644
--- a/deps/python-gitlab/meta.yaml
+++ b/deps/python-gitlab/meta.yaml
@@ -1,5 +1,5 @@
 {% set name = "python-gitlab" %}
-{% set version = "2.2.0" %}
+{% set version = "2.6.0" %}
 
 package:
   name: {{ name|lower }}
@@ -7,7 +7,7 @@ package:
 
 source:
   url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
-  sha256: 4c4ea60c8303f4214522b18038df017cae35afda7474efa0b4e19c2e73bc3ae2
+  sha256: a862c6874524ab585b725a17b2cd2950fc09d6d74205f40a11be2a4e8f2dcaa1
 
 build:
   number: 0
@@ -22,6 +22,7 @@ requirements:
   run:
     - python >=3.6.0
     - requests >=2.22.0
+    - requests-toolbelt >=0.9.1
 
 test:
   imports:
-- 
GitLab