Skip to content

Commit

Permalink
bump tp 1.0.0rc16
Browse files Browse the repository at this point in the history
  • Loading branch information
blankdots committed Mar 31, 2021
1 parent 48f4642 commit d9b4d37
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 30 deletions.
50 changes: 24 additions & 26 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,43 +18,45 @@
import os

# Get the project root dir
sys.path.insert(0, os.path.abspath('../../swift_browser_ui'))
sys.path.insert(0, os.path.abspath("../../swift_browser_ui"))

# -- Project information -----------------------------------------------------
current_year = str(datetime.date.today().year)

project = 'swift-browser-ui'
copyright = f'{current_year}, CSC Developers'
author = 'CSC Developers'
project = "swift-browser-ui"
copyright = f"{current_year}, CSC Developers"
author = "CSC Developers"

# The full version, including alpha/beta/rc tags
version = release = '1.0.0rc15'
version = release = "1.0.0rc16"


# -- General configuration ---------------------------------------------------

# 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.autosummary',
'sphinx.ext.coverage',
'sphinx.ext.ifconfig',
'sphinx.ext.viewcode',
'sphinx.ext.githubpages',
'sphinx.ext.todo']
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
"sphinx.ext.coverage",
"sphinx.ext.ifconfig",
"sphinx.ext.viewcode",
"sphinx.ext.githubpages",
"sphinx.ext.todo",
]

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

linkcheck_ignore = [r'https://editor.swagger.io/']
linkcheck_ignore = [r"https://editor.swagger.io/"]

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = []

master_doc = 'index'
master_doc = "index"

autosummary_generate = True

Expand All @@ -63,24 +65,20 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'sphinx_rtd_theme'
html_theme_options = {
'collapse_navigation': True,
'sticky_navigation': True,
'display_version': True,
'prev_next_buttons_location': 'bottom'}
html_theme = "sphinx_rtd_theme"
html_theme_options = {"collapse_navigation": True, "sticky_navigation": True, "display_version": True, "prev_next_buttons_location": "bottom"}

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


def setup(app):
"""Add custom stylesheet."""
app.add_css_file('style.css')
app.add_css_file("style.css")


htmlhelp_basename = 'swift-browser-ui'
man_pages = [(master_doc, 'swift-browser-ui', [author], 1)]
texinfo_documents = [(master_doc, 'swift-browser-ui', author, 'Miscellaneous')]
htmlhelp_basename = "swift-browser-ui"
man_pages = [(master_doc, "swift-browser-ui", [author], 1)]
texinfo_documents = [(master_doc, "swift-browser-ui", author, "Miscellaneous")]
2 changes: 1 addition & 1 deletion swift_browser_ui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@


__name__ = "swift_browser_ui"
__version__ = "1.0.0rc15"
__version__ = "1.0.0rc16"
__author__ = "CSC Developers"
__license__ = "MIT License"
4 changes: 2 additions & 2 deletions swift_browser_ui_frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion swift_browser_ui_frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "swift_browser_ui_frontend_npm",
"version": "1.0.0rc15",
"version": "1.0.0rc16",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down

0 comments on commit d9b4d37

Please sign in to comment.