Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update rtd build #49

Merged
merged 1 commit into from
Nov 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,18 +76,6 @@
# get version from python package:


here = os.path.dirname(__file__)
repo = os.path.join(here, "..", "..")
_version_py = os.path.join(repo, "jupyter_app_launcher", "_version.py")
version_ns = {"__file__": os.path.join(repo, "..")}
with open(_version_py) as f:
exec(f.read(), version_ns)

# The short X.Y version.
# version = '%i.%i' % version_ns['version_info'][:2]
# The full version, including alpha/beta/rc tags.
release = version_ns["__version__"]

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#
Expand Down Expand Up @@ -204,6 +192,10 @@


html_theme = "pydata_sphinx_theme"

html_theme_options = {
"github_url": "https://github.com/trungleduc/jupyter_app_launcher"
}
# html_permalinks_icon = '<span>#</span>'
# html_theme = 'sphinxawesome_theme'
# otherwise, readthedocs.org uses their theme by default, so no need to specify it
Expand Down
3 changes: 1 addition & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@

jupyter_app_launcher
JupyterLab App Launcher Documentation
=================================================================================

Custom launcher entries for JupyterLab.

Version: |release|

**jupyter_app_launcher** helps users customize the JupyterLab launcher with a simple YAML file. Users can add custom entries to the launcher to:

Expand Down
Loading