-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into update_actions_versions
- Loading branch information
Showing
34 changed files
with
502 additions
and
1,047 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,6 @@ venv | |
mlruns | ||
.profile | ||
.env | ||
*.html | ||
_extract | ||
*.gzip | ||
*checkpoint* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
requirejs.config({ | ||
paths: { | ||
base: '/static/base', | ||
plotly: 'https://cdn.plot.ly/plotly-2.30.0.min.js?noext', | ||
}, | ||
}); |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
<!doctype html> | ||
<html class="no-js"{% if language is not none %} lang="{{ language }}"{% endif %}> | ||
<head> | ||
{%- block site_meta -%} | ||
<meta charset="utf-8"/> | ||
<meta name="viewport" content="width=device-width,initial-scale=1"/> | ||
<meta name="color-scheme" content="light dark"> | ||
<meta name="google-site-verification" content="i0qQRaR9OA3tSz_9tDocdcXGY27Ox_cy4FrvTHD2C_0" /> | ||
|
||
{%- if metatags %}{{ metatags }}{% endif -%} | ||
|
||
{# Make sure all pages have a description or Bing does not like us #} | ||
{% if 'name="description"' not in metatags %} | ||
<meta name="description" content="CyclOps Python API documentation"> | ||
{% endif %} | ||
|
||
{%- block linktags %} | ||
{%- if hasdoc('about') -%} | ||
<link rel="author" title="{{ _('About these documents') }}" href="{{ pathto('about') }}" /> | ||
{%- endif -%} | ||
{%- if hasdoc('genindex') -%} | ||
<link rel="index" title="{{ _('Index') }}" href="{{ pathto('genindex') }}" /> | ||
{%- endif -%} | ||
{%- if hasdoc('search') -%} | ||
<link rel="search" title="{{ _('Search') }}" href="{{ pathto('search') }}" /> | ||
{%- endif -%} | ||
{%- if hasdoc('copyright') -%} | ||
<link rel="copyright" title="{{ _('Copyright') }}" href="{{ pathto('copyright') }}" /> | ||
{%- endif -%} | ||
{%- if next -%} | ||
<link rel="next" title="{{ next.title|striptags|e }}" href="{{ next.link|e }}" /> | ||
{%- endif -%} | ||
{%- if prev -%} | ||
<link rel="prev" title="{{ prev.title|striptags|e }}" href="{{ prev.link|e }}" /> | ||
{%- endif -%} | ||
{#- rel="canonical" (set by html_baseurl) -#} | ||
{%- if pageurl %} | ||
<link rel="canonical" href="{{ pageurl|e }}" /> | ||
{%- endif %} | ||
{%- endblock linktags %} | ||
|
||
{# Favicon #} | ||
{%- if favicon_url -%} | ||
<link rel="shortcut icon" href="{{ favicon_url }}"/> | ||
{%- endif -%} | ||
|
||
{#- Generator banner -#} | ||
<meta name="generator" content="sphinx-{{ sphinx_version }}, furo {{ furo_version }}"/> | ||
|
||
{# Bing webmasters meta tag #} | ||
<meta name="msvalidate.01" content="8D2A5032F006424CAF54C0DDCD16F666" /> | ||
|
||
{%- endblock site_meta -%} | ||
|
||
{#- Site title -#} | ||
{%- block htmltitle -%} | ||
{# See Sphinx monkey patch in conf.py #} | ||
{% if 'title' in metas %} | ||
<title>{{ metas.title }}</title> | ||
{% elif not docstitle %} | ||
<title>{{ title|striptags|e }}</title> | ||
{% elif pagename == master_doc %} | ||
<title>{{ docstitle|striptags|e }}</title> | ||
{% else %} | ||
<title>{{ title|striptags|e }} - {{ docstitle|striptags|e }}</title> | ||
{% endif %} | ||
{%- endblock -%} | ||
|
||
{%- block styles -%} | ||
|
||
{# Custom stylesheets #} | ||
{%- block regular_styles -%} | ||
{%- for css in css_files -%} | ||
{% if css|attr("filename") -%} | ||
{{ css_tag(css) }} | ||
{%- else -%} | ||
<link rel="stylesheet" href="{{ pathto(css, 1)|e }}" type="text/css" /> | ||
{%- endif %} | ||
{% endfor -%} | ||
{%- endblock regular_styles -%} | ||
|
||
{#- Theme-related stylesheets -#} | ||
{%- block theme_styles %} | ||
{% include "partials/_head_css_variables.html" with context %} | ||
{%- endblock -%} | ||
|
||
{%- block extra_styles %} | ||
{%- endblock -%} | ||
|
||
{%- endblock styles -%} | ||
|
||
{#- Custom front matter #} | ||
{%- block extrahead -%}{%- endblock -%} | ||
|
||
{# Custom JS #} | ||
{%- block regular_scripts -%} | ||
{% for path in script_files -%} | ||
{{ js_tag(path) }} | ||
{% endfor -%} | ||
{%- endblock regular_scripts -%} | ||
|
||
{# Theme-related JavaScript code #} | ||
{%- block theme_scripts -%} | ||
{%- endblock -%} | ||
|
||
{# Footer icons #} | ||
<script src="https://kit.fontawesome.com/2c1f516901.js" crossorigin="anonymous"></script> | ||
|
||
</head> | ||
<body> | ||
{% block body %} | ||
<script> | ||
document.body.dataset.theme = localStorage.getItem("theme") || "auto"; | ||
</script> | ||
{% endblock %} | ||
|
||
{%- block scripts -%} | ||
{%- endblock scripts -%} | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.