Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
Empty file modified website/build.py
100644 → 100755
Empty file.
Empty file modified website/fetch_github_stars.py
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion website/fetch_pypi_downloads_via_bigquery.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def fetch_bigquery(names: list[str], dry_run: bool) -> dict[str, int]:
if dry_run:
cmd.append("--dry_run")
cmd.append(query)
result = subprocess.run(cmd, capture_output=True, text=True)
result = subprocess.run(cmd, capture_output=True, text=True, check=False)
if result.returncode != 0:
print(result.stderr, file=sys.stderr)
sys.exit(1)
Expand Down
Empty file modified website/fetch_pypi_downloads_via_clickpy.py
100644 → 100755
Empty file.
Empty file modified website/fetch_pypi_downloads_via_pepy.py
100644 → 100755
Empty file.
Empty file modified website/readme_parser.py
100644 → 100755
Empty file.
5 changes: 2 additions & 3 deletions website/tests/test_readme_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
from pathlib import Path

import pytest
from markdown_it import MarkdownIt
from markdown_it.tree import SyntaxTreeNode

from readme_parser import (
_find_inline,
Expand All @@ -13,9 +15,6 @@
render_inline_text,
)

from markdown_it import MarkdownIt
from markdown_it.tree import SyntaxTreeNode


def _parse_inline(md_text: str) -> list[SyntaxTreeNode]:
"""Helper: parse a single paragraph and return its inline children."""
Expand Down