From 7caac3da5b5a7a82b7f8c94e79af3acd73fa087d Mon Sep 17 00:00:00 2001 From: rjdbcm Date: Mon, 2 Dec 2024 23:23:52 -0600 Subject: [PATCH] fix wheel format --- ozi_build/_pyc_wheel.py | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ozi_build/_pyc_wheel.py b/ozi_build/_pyc_wheel.py index c2a4493..4fe10c3 100644 --- a/ozi_build/_pyc_wheel.py +++ b/ozi_build/_pyc_wheel.py @@ -135,6 +135,7 @@ def convert_wheel( if exclude: exclude = re.compile(re.escape(exclude)) + print(exclude) dist_info = "-".join(whl_file.stem.split("-")[:-3]) diff --git a/pyproject.toml b/pyproject.toml index bdb822d..e114ab0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,7 +57,7 @@ pure-python-abi="py3-none" summary="Create pep517 compliant packages from the meson build system, OZI-maintained fork." [tool.ozi-build.pyc_wheel] -exclude = ".*\\.py" +exclude = ".*.py" [tool.deptry.per_rule_ignores] DEP002 = ["meson"]