ultralytics 8.0.215 Windows UTF-8 fix 2 (#6463)

Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
Glenn Jocher 2023-11-20 15:56:55 +01:00 committed by GitHub
parent d43fcecc8a
commit 618923ab11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 21 additions and 10 deletions

View file

@ -24,9 +24,9 @@ Note:
- This script is built to be run in an environment where Python and MkDocs are installed and properly configured.
"""
import os
import re
import shutil
import subprocess
from pathlib import Path
DOCS = Path(__file__).parent.resolve()
@ -41,12 +41,12 @@ def build_docs():
# Build the main documentation
print(f'Building docs from {DOCS}')
os.system(f'mkdocs build -f {DOCS}/mkdocs.yml')
subprocess.run(f'mkdocs build -f {DOCS}/mkdocs.yml', check=True, shell=True)
# Build other localized documentations
for file in DOCS.glob('mkdocs_*.yml'):
print(f'Building MkDocs site with configuration file: {file}')
os.system(f'mkdocs build -f {file}')
subprocess.run(f'mkdocs build -f {file}', check=True, shell=True)
print(f'Site built at {SITE}')