Skip to content

Commit 14e5750

Browse files
committed
Address code review comments
Include full git hashes
1 parent b994a0f commit 14e5750

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

apps/microtvm/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ importer-tflite = ["tflite", "tensorflow", "tensorflow-estimator"]
129129
autodocsumm = "^0.1"
130130
black = "^19.10b0"
131131
sphinx = "^3.0"
132-
sphinx-gallery = { git = "https://github.com/sphinx-gallery/sphinx-gallery.git", branch = "master" }
132+
sphinx-gallery = { git = "https://github.com/sphinx-gallery/sphinx-gallery.git", rev = "6142f179" }
133133
sphinx-rtd-theme = "^0.4"
134134
matplotlib = "^3.2"
135135
Image = "^1.5"

docker/install/ubuntu_install_sphinx.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ pip3 install \
2929
matplotlib \
3030
sphinx==4.2.0 \
3131
sphinx_autodoc_annotation \
32-
"git+https://github.com/sphinx-gallery/sphinx-gallery.git" \
32+
"git+https://github.com/sphinx-gallery/sphinx-gallery.git@6142f1791151849b5bec4bf3959f75697ba226cd" \
3333
sphinx_rtd_theme

tests/scripts/ci.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,8 @@ def docs(
260260
"tlcpack-sphinx-addon==0.2.1",
261261
"synr==0.5.0",
262262
"image==1.5.33",
263-
"git+https://github.com/sphinx-gallery/sphinx-gallery.git",
263+
# Temporary git link until a release is published
264+
"git+https://github.com/sphinx-gallery/sphinx-gallery.git@6142f1791151849b5bec4bf3959f75697ba226cd",
264265
"sphinx-rtd-theme==1.0.0",
265266
"matplotlib==3.3.4",
266267
"commonmark==0.9.1",

tests/scripts/task_python_docs.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ IGNORED_WARNINGS=(
8484
'autotvm:Cannot find config for target=llvm -keys=cpu -link-params=0'
8585
'autotvm:One or more operators have not been tuned. Please tune your model for better performance. Use DEBUG logging level to see more details.'
8686
'autotvm:Cannot find config for target=cuda -keys=cuda,gpu'
87-
'absl:For model inputs containing unsupported operations'
87+
# Warning is thrown during TFLite quantization for micro_train tutorial
88+
'absl:For model inputs containing unsupported operations which cannot be quantized, the `inference_input_type` attribute will default to the original type.'
8889
)
8990

9091
JOINED_WARNINGS=$(join_by '|' "${IGNORED_WARNINGS[@]}")

0 commit comments

Comments
 (0)