Skip to content

Commit

Permalink
Merge 005feb0 into 44811f7
Browse files Browse the repository at this point in the history
  • Loading branch information
mvidalgarcia committed Jun 5, 2020
2 parents 44811f7 + 005feb0 commit fd2aa33
Show file tree
Hide file tree
Showing 25 changed files with 2,232 additions and 1,976 deletions.
16 changes: 16 additions & 0 deletions CHANGES.rst
@@ -1,6 +1,22 @@
Changes
=======

Version master (UNRELEASED)
---------------------------

- Enriches disk usage output format.
- Adds new command to restart workflows.
- Optimizes CLI performance.
- Adds option to get logs of a specific step.
- Enhances logs formatting using marks and colors.
- Switches from Bravado to ``requests`` to perform better performant downloads.
- Validates user access token and improves output of ``ping`` command.
- Accepts both ``reana.yaml`` and ``reana.yml`` filenames.
- Includes better formatting for ``diff`` command.
- Prevents including a dot as part of the workflow name.
- Allows passing workflow operational options in the ``reana.yaml``.
- Adds Black formatter support.

Version 0.6.0 (2019-12-27)
--------------------------

Expand Down
3 changes: 3 additions & 0 deletions README.rst
Expand Up @@ -20,6 +20,9 @@
.. image:: https://img.shields.io/github/license/reanahub/reana.svg
:target: https://github.com/reanahub/reana-client/blob/master/LICENSE

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/psf/black

About
-----

Expand Down
103 changes: 51 additions & 52 deletions docs/conf.py
Expand Up @@ -34,37 +34,37 @@
# needs_sphinx = '1.0'

# Do not warn on external images.
suppress_warnings = ['image.nonlocal_uri']
suppress_warnings = ["image.nonlocal_uri"]

# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.coverage',
'sphinx.ext.doctest',
'sphinx.ext.graphviz',
'sphinx.ext.intersphinx',
'sphinx.ext.viewcode',
'sphinx_click.ext',
"sphinx.ext.autodoc",
"sphinx.ext.coverage",
"sphinx.ext.doctest",
"sphinx.ext.graphviz",
"sphinx.ext.intersphinx",
"sphinx.ext.viewcode",
"sphinx_click.ext",
]

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
templates_path = ["_templates"]

# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
source_suffix = ".rst"

# The master toctree document.
master_doc = 'index'
master_doc = "index"

# General information about the project.
project = 'reana'
copyright = '2017-2019 info@reana.io'
author = 'info@reana.io'
project = "reana"
copyright = "2017-2019 info@reana.io"
author = "info@reana.io"

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand All @@ -74,9 +74,9 @@

# Get the version string. Cannot be done with import!
g = {}
with open(os.path.join('..', 'reana_client', 'version.py'), 'rt') as fp:
with open(os.path.join("..", "reana_client", "version.py"), "rt") as fp:
exec(fp.read(), g)
version = g['__version__']
version = g["__version__"]

# The full version, including alpha/beta/rc tags.
release = version
Expand All @@ -91,10 +91,10 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This patterns also effect to html_static_path and html_extra_path
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
pygments_style = "sphinx"

# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = False
Expand All @@ -105,53 +105,53 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'alabaster'
html_theme = "alabaster"

# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
#
html_theme_options = {
'logo': 'logo-reana.png',
'description': """<p>REANA-Client is a component of the <a
"logo": "logo-reana.png",
"description": """<p>REANA-Client is a component of the <a
href="http://www.reana.io">REANA</a> reusable and
reproducible research data analysis
platform.</p><p>REANA-Client provides a command-line tool
that allows researchers to submit, run, and manage their
computational workflows.</p>""",
'github_user': 'reanahub',
'github_repo': 'reana-client',
'github_button': False,
'github_banner': True,
'show_powered_by': False,
'extra_nav_links': {
'REANA@DockerHub': 'https://hub.docker.com/u/reanahub/',
'REANA@GitHub': 'https://github.com/reanahub',
'REANA@Twitter': 'https://twitter.com/reanahub',
'REANA@Web': 'http://www.reana.io',
}
"github_user": "reanahub",
"github_repo": "reana-client",
"github_button": False,
"github_banner": True,
"show_powered_by": False,
"extra_nav_links": {
"REANA@DockerHub": "https://hub.docker.com/u/reanahub/",
"REANA@GitHub": "https://github.com/reanahub",
"REANA@Twitter": "https://twitter.com/reanahub",
"REANA@Web": "http://www.reana.io",
},
}

# 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"]

# Custom sidebar templates, maps document names to template names.
html_sidebars = {
'**': [
'about.html',
'navigation.html',
'relations.html',
'searchbox.html',
'donate.html',
"**": [
"about.html",
"navigation.html",
"relations.html",
"searchbox.html",
"donate.html",
]
}

# -- Options for HTMLHelp output ------------------------------------------

# Output file base name for HTML help builder.
htmlhelp_basename = 'reanadoc'
htmlhelp_basename = "reanadoc"


# -- Options for LaTeX output ---------------------------------------------
Expand All @@ -160,15 +160,12 @@
# The paper size ('letterpaper' or 'a4paper').
#
# 'papersize': 'letterpaper',

# The font size ('10pt', '11pt' or '12pt').
#
# 'pointsize': '10pt',

# Additional stuff for the LaTeX preamble.
#
# 'preamble': '',

# Latex figure (float) alignment
#
# 'figure_align': 'htbp',
Expand All @@ -178,19 +175,15 @@
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'reana.tex', 'reana Documentation',
'info@reana.io', 'manual'),
(master_doc, "reana.tex", "reana Documentation", "info@reana.io", "manual"),
]


# -- Options for manual page output ---------------------------------------

# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'reana', 'reana Documentation',
[author], 1)
]
man_pages = [(master_doc, "reana", "reana Documentation", [author], 1)]


# -- Options for Texinfo output -------------------------------------------
Expand All @@ -199,7 +192,13 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'reana', 'reana Documentation',
author, 'reana', 'One line description of project.',
'Miscellaneous'),
(
master_doc,
"reana",
"reana Documentation",
author,
"reana",
"One line description of project.",
"Miscellaneous",
),
]
2 changes: 1 addition & 1 deletion pytest.ini
Expand Up @@ -5,4 +5,4 @@
# under the terms of the MIT License; see LICENSE file for more details.

[pytest]
addopts = --pep8 --ignore=docs --cov=reana_client --cov-report=term-missing
addopts = --ignore=docs --cov=reana_client --cov-report=term-missing
3 changes: 1 addition & 2 deletions reana_client/__init__.py
@@ -1,4 +1,3 @@

# -*- coding: utf-8 -*-
#
# This file is part of REANA.
Expand All @@ -13,4 +12,4 @@

from .version import __version__

__all__ = ('__version__', )
__all__ = ("__version__",)

0 comments on commit fd2aa33

Please sign in to comment.