CI: Fix lint issue

Signed-off-by: martinRenou <martin.renou@gmail.com>
This commit is contained in:
martinRenou 2020-10-19 11:12:39 +02:00
parent 2e2fe951b7
commit afc463da7d
5 changed files with 10 additions and 14 deletions

View File

@ -2,4 +2,3 @@ version: 2
conda:
environment: docs/environment.yml

View File

@ -17,12 +17,12 @@
# -- Project information -----------------------------------------------------
project = 'mamba'
copyright = '2020, QuantStack & mamba contributors'
author = 'QuantStack & mamba contributors'
project = "mamba"
copyright = "2020, QuantStack & mamba contributors" # noqa
author = "QuantStack & mamba contributors"
# The full version, including alpha/beta/rc tags
release = '0.5.2'
release = "0.5.2"
# -- General configuration ---------------------------------------------------
@ -30,12 +30,10 @@ release = '0.5.2'
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'myst_parser'
]
extensions = ["myst_parser"]
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
templates_path = ["_templates"]
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
@ -48,7 +46,7 @@ exclude_patterns = []
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'sphinx_book_theme'
html_theme = "sphinx_book_theme"
html_logo = "_static/logo.png"
html_title = "documentation"
@ -56,4 +54,4 @@ html_title = "documentation"
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_static_path = ["_static"]

View File

@ -1,2 +1 @@
# micromamba

View File

@ -131,4 +131,4 @@ class MambaSolver:
Let's walk through this example:
We first use the `get_index` method to download repository data from the channels.
We first use the `get_index` method to download repository data from the channels.

View File

@ -127,7 +127,7 @@ ext_modules = [
extra_link_args=extra_link_args,
libraries=libraries,
language="c++",
),
)
]