10000 Remove temp fix for Sphinx _static file bug by pushfoo · Pull Request #2709 · pythonarcade/arcade · GitHub
[go: up one dir, main page]

Skip to content

Remove temp fix for Sphinx _static file bug #2709

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: development
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Format make.py with ruff
  • Loading branch information
pushfoo committed May 30, 2025
commit a3990cbddc4779dccffba31a1460e76c6711d130
15 changes: 13 additions & 2 deletions make.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,9 @@ def clean():
os.remove(item) if os.path.isfile(item) else rmtree(item)


JobsAnnotation = Annotated[Optional[str], Option(help="Specify a number of parallel build tasks (defaults no N_CORES)")]
JobsAnnotation = Annotated[
Optional[str], Option(help="Specify a number of parallel build tasks (defaults no N_CORES)")
]


@app.command(rich_help_panel="Docs")
Expand All @@ -192,7 +194,16 @@ def serve(jobs: JobsAnnotation = "auto"):
Build and serve the docs with automatic rebuilds and live reload.
"""
run_doc(
[SPHINX_AUTOBUILD, *SPHINXAUTOBUILDOPTS, "--jobs", jobs, "-b", "html", *ALLSPHINXOPTS, f"{BUILD_DIR}/html"]
[
SPHINX_AUTOBUILD,
*SPHINXAUTOBUILDOPTS,
"--jobs",
jobs,
"-b",
"html",
*ALLSPHINXOPTS,
f"{BUILD_DIR}/html",
]
)


Expand Down
Loading
0