Skip to content

Commit

Permalink
Merge pull request #23 from EL-BID/demo-updates
Browse files Browse the repository at this point in the history
Updates notebook demo with new API changes
  • Loading branch information
Claudio9701 committed Aug 10, 2023
2 parents e8d8060 + 60fc408 commit 9f5138f
Show file tree
Hide file tree
Showing 28 changed files with 289,790 additions and 289,904 deletions.
25 changes: 11 additions & 14 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
#
import os
import sys
sys.path.insert(0, os.path.abspath('../..'))

sys.path.insert(0, os.path.abspath("../.."))
# sys.path.insert(0, os.path.abspath('../../urbanpy/'))
# sys.path.insert(0, os.path.abspath('../../urbanpy/download'))
# sys.path.insert(0, os.path.abspath('../../urbanpy/geom'))
Expand All @@ -24,27 +25,23 @@

# -- Project information -----------------------------------------------------

project = 'urbanpy'
copyright = '2020, IADB'
author = 'Andres Regal, Claudio Ortega & Antonio Vasquez Brust'
project = "urbanpy"
copyright = "2020, IADB"
author = "Andres Regal, Claudio Ortega & Antonio Vasquez Brust"

# The full version, including alpha/beta/rc tags
release = '__version__'
release = "__version__"


# -- 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_rtd_theme',
'numpydoc'
]
extensions = ["sphinx.ext.autodoc", "sphinx_rtd_theme", "numpydoc"]

# 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.
Expand All @@ -57,11 +54,11 @@
# 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 = "sphinx_rtd_theme"

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

master_doc = 'index'
master_doc = "index"

0 comments on commit 9f5138f

Please sign in to comment.