You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by gu...@apache.org on 2023/01/09 20:02:50 UTC

[tvm] branch main updated: [HotFix][docs] Use correct Colab button URL (#13725)

This is an automated email from the ASF dual-hosted git repository.

guberti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new 5db453e18a [HotFix][docs] Use correct Colab button URL (#13725)
5db453e18a is described below

commit 5db453e18ac65b9c38ff755a4dbda5c37fd51a7f
Author: Gavin Uberti <gu...@users.noreply.github.com>
AuthorDate: Mon Jan 9 12:02:44 2023 -0800

    [HotFix][docs] Use correct Colab button URL (#13725)
    
    * [docs] Use correct Colab button URL
    
    * Black format conf.py
---
 docs/conf.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/docs/conf.py b/docs/conf.py
index 357df8cef1..18c634c05d 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -153,7 +153,9 @@ COLAB_URL_BASE = "https://colab.research.google.com/github"
 IPYTHON_GITHUB_BASE = "apache/tvm-site/blob/asf-site/docs/_downloads/"
 
 # The SVG image of the "Open in Colab" button.
-BUTTON = "https://raw.githubusercontent.com/apache/web-data/main/images/utilities/colab_button.svg"
+BUTTON = (
+    "https://raw.githubusercontent.com/tlc-pack/web-data/main/images/utilities/colab_button.svg"
+)
 
 
 @monkey_patch("sphinx_gallery.gen_rst", "save_rst_example")