未验证 提交 a0c7e630 编写于 作者: D Double_V 提交者: GitHub

keep same version of clang-format with paddle (#9286)

* support min_area_rect crop

* add check_install

* fix requirement.txt

* fix check_install

* add lanms-neo for drrg

* fix

* fix doc

* fix

* support set gpu_id when inference

* fix #8855

* fix #8855

* opt slim doc

* fix doc bug

* fix east postprocess

* keep same version of clang-format with paddle
上级 a27bb180
#!/bin/bash #!/bin/bash
set -e set -e
readonly VERSION="3.8" readonly VERSION="13.0.0"
version=$(clang-format -version) version=$(clang-format -version)
if ! [[ $(python -V 2>&1 | awk '{print $2}' | awk -F '.' '{print $1$2}') -ge 36 ]]; then
echo "clang-format installation by pip need python version great equal 3.6,
please change the default python to higher version."
exit 1
fi
if ! [[ $version == *"$VERSION"* ]]; then if ! [[ $version == *"$VERSION"* ]]; then
echo "clang-format version check failed." # low version of pip may not have the source of clang-format whl
echo "a version contains '$VERSION' is needed, but get '$version'" pip install --upgrade pip
echo "you can install the right version, and make an soft-link to '\$PATH' env" pip install clang-format==13.0.0
exit -1
fi fi
clang-format $@ clang-format $@
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册