From bfd17aa79585553ae431fc10490a9cc975905239 Mon Sep 17 00:00:00 2001 From: Amir MOHAMMADI <amir.mohammadi@idiap.ch> Date: Wed, 27 Apr 2022 20:50:26 +0200 Subject: [PATCH] remove bob.blitz --- doc/cplusplus_library.rst | 2 +- doc/cplusplus_modules.rst | 2 +- doc/extra-intersphinx.txt | 1 - doc/links.rst | 1 - doc/pure_python.rst | 2 +- 5 files changed, 3 insertions(+), 5 deletions(-) diff --git a/doc/cplusplus_library.rst b/doc/cplusplus_library.rst index 68b72ea..5a579b9 100644 --- a/doc/cplusplus_library.rst +++ b/doc/cplusplus_library.rst @@ -69,7 +69,7 @@ If you would like to generate a Library out of your C++ code, simply add it in t Again, we use the overloaded library class -:py:class:`bob.blitz.extension.Library` instead of the +``bob.blitz.extension.Library`` instead of the :py:class:`bob.extension.Library`, but the parameters are identical, and identical to the ones of the :py:class:`bob.extension.Extension`. To avoid later complications, you should follow the guidelines for libraries in bob diff --git a/doc/cplusplus_modules.rst b/doc/cplusplus_modules.rst index 34dfec1..d595364 100644 --- a/doc/cplusplus_modules.rst +++ b/doc/cplusplus_modules.rst @@ -61,7 +61,7 @@ As the second step, we need to add some lines in the header of the file to tell build_requires = setup_packages + bob_packages + load_requirements() In fact, we don't use the extension from :py:class:`bob.extension.Extension`, but the one from ``bob.blitz.extension``, which is a derivation of this package. -The difference is that in :py:class:`bob.blitz.extension.Extension` all header files and libraries for the ``Blitz++`` library are added. +The difference is that in ``bob.blitz.extension.Extension`` all header files and libraries for the ``Blitz++`` library are added. Third, we have to add an extension using the ``Extension`` class, by listing all C/C++ files that should be compiled into the extension: diff --git a/doc/extra-intersphinx.txt b/doc/extra-intersphinx.txt index 5fa37b4..caf49d2 100644 --- a/doc/extra-intersphinx.txt +++ b/doc/extra-intersphinx.txt @@ -1,4 +1,3 @@ python click -bob.blitz bob.bio.base diff --git a/doc/links.rst b/doc/links.rst index 018ad07..f638bfd 100644 --- a/doc/links.rst +++ b/doc/links.rst @@ -25,7 +25,6 @@ .. _sphinx: http://sphinx.pocoo.org .. _zc.buildout: http://pypi.python.org/pypi/zc.buildout/ .. _mr.developer: http://pypi.python.org/pypi/mr.developer/ -.. _bob.blitz: https://gitlab.idiap.ch/bob/bob.blitz .. _pip: https://pip.pypa.io/en/stable/ .. _pip's user guide: https://pip.pypa.io/en/stable/user_guide/ .. _napoleon: https://sphinxcontrib-napoleon.readthedocs.io/en/latest/ diff --git a/doc/pure_python.rst b/doc/pure_python.rst index 0f19adf..4c6a260 100644 --- a/doc/pure_python.rst +++ b/doc/pure_python.rst @@ -96,7 +96,7 @@ The package you cloned above is a pure-Python example package and contains all elements to get you started. It defines a single library module called ``bob.example.project``, which declares a simple script, called ``version.py`` that prints out the version of the dependent library -:ref:`bob.blitz <bob.blitz>`. These information is available in your +``bob.blitz``. These information is available in your ``setup.py`` file and particularly in its ``setup`` function: .. code-block:: python -- GitLab