Cython Integration and Test Case Enhancements #1

Merged
foefl merged 10 commits from test_cython into main 2025-10-22 10:17:38 +00:00
Showing only changes of commit 9a421d5fbd - Show all commits

View File

@ -32,7 +32,7 @@ def delete_source_files_from_wheel(pth_to_whl: Path):
tmp_dir.mkdir() tmp_dir.mkdir()
filename = pth_to_whl.name filename = pth_to_whl.name
tmp_whl = tmp_dir / filename tmp_whl = tmp_dir / filename
pattern = re.compile(r".*\.c$|.*detection.py$") pattern = re.compile(r".*\.c$|.*detection.py$|.*\.pyi$")
with zipfile.ZipFile(pth_to_whl, mode="r") as src: with zipfile.ZipFile(pth_to_whl, mode="r") as src:
with zipfile.ZipFile(tmp_whl, mode="w") as dst: with zipfile.ZipFile(tmp_whl, mode="w") as dst: