Skip to content

Commit

Permalink
Merge pull request #455 from tataratat/bf-typo
Browse files Browse the repository at this point in the history
  • Loading branch information
j042 authored Aug 23, 2024
2 parents 7cbec91 + a117372 commit 148f29e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docs/source/handle_markdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import pathlib
import re
import warnings
from typing import List, Tuple

# Path to this file.
file_path = os.path.abspath(os.path.dirname(__file__))
Expand All @@ -37,7 +38,7 @@ def get_markdown_links(line: str) -> str:
return possible if possible else ""


def get_special_links(line: str) -> list[tuple[str, str]]:
def get_special_links(line: str) -> List[Tuple[str, str]]:
"""Get the special links from a string.
Args:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ input = "splinepy/_version.py"
[tool.cibuildwheel]
test-extras = ["test"]
test-command = "pytest {project}/tests"
before_all = "python docs/source/handle_markdown.py -b"
before-all = "python {project}/docs/source/handle_markdown.py -b"

[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64"]
Expand Down

0 comments on commit 148f29e

Please sign in to comment.