From cf621ad17185c7eaca803275cd39a9ca2c02f568 Mon Sep 17 00:00:00 2001
From: Amir Mohammadi <183.amir@gmail.com>
Date: Wed, 5 Oct 2016 11:43:30 +0200
Subject: [PATCH] [Automatic] update links and the ci mostly

---
 doc/conf.py | 24 ++++++++++++++++++++++--
 setup.py    |  4 ++--
 2 files changed, 24 insertions(+), 4 deletions(-)

diff --git a/doc/conf.py b/doc/conf.py
index 844307f..39120fc 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -30,9 +30,29 @@ extensions = [
 import sphinx
 if sphinx.__version__ >= "1.4.1":
     extensions.append('sphinx.ext.imgmath')
+    imgmath_image_format = 'svg'
 else:
     extensions.append('sphinx.ext.pngmath')
 
+# Be picky about warnings
+nitpicky = True
+
+# Ignores stuff we can't easily resolve on other project's sphinx manuals
+nitpick_ignore = []
+
+# Allows the user to override warnings from a separate file
+if os.path.exists('nitpick-exceptions.txt'):
+    for line in open('nitpick-exceptions.txt'):
+        if line.strip() == "" or line.startswith("#"):
+            continue
+        dtype, target = line.split(None, 1)
+        target = target.strip()
+        try: # python 2.x
+            target = unicode(target)
+        except NameError:
+            pass
+        nitpick_ignore.append((dtype, target))
+
 # Always includes todos
 todo_include_todos = True
 
@@ -111,7 +131,7 @@ pygments_style = 'sphinx'
 
 # Some variables which are useful for generated material
 project_variable = project.replace('.', '_')
-short_description = u'Tools for running biometric recognition experiments'
+short_description = u'Tools for running biometric recognition experiments using GMM-based approximation'
 owner = [u'Idiap Research Institute']
 
 
@@ -217,7 +237,7 @@ autodoc_default_flags = [
 
 # For inter-documentation mapping:
 from bob.extension.utils import link_documentation, load_requirements
-sphinx_requirements = "./extra-intersphinx.txt"
+sphinx_requirements = "extra-intersphinx.txt"
 if os.path.exists(sphinx_requirements):
     intersphinx_mapping = link_documentation(additional_packages=load_requirements(sphinx_requirements))
 else:
diff --git a/setup.py b/setup.py
index 9f0e8bf..48484d0 100644
--- a/setup.py
+++ b/setup.py
@@ -49,7 +49,7 @@ setup(
     version = open("version.txt").read().rstrip(),
     description = 'Tools for running biometric recognition experiments using GMM-based approximation',
 
-    url = 'https://www.gitlab.idiap.ch/bob/bob.bio.gmm',
+    url = 'https://gitlab.idiap.ch/bob/bob.bio.gmm',
     license = 'BSD',
     author = '<YourName>',
     author_email = '<YourEmail>',
@@ -80,7 +80,7 @@ setup(
     #
     # Our database packages are good examples of namespace implementations
     # using several layers. You can check them out here:
-    # https://github.com/idiap/bob/wiki/Satellite-Packages
+    # https://gitlab.idiap.ch/bob/bob/wikis/Packages
 
 
     # This entry defines which scripts you will have inside the 'bin' directory
-- 
GitLab