diff --git a/pyproject.toml b/pyproject.toml index 2dc0a7133..f51e02728 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools==80.3.1", "setuptools-scm==8.3.1", "wheel==0.45.1", "auditwheel==6.2.0"] +requires = ["setuptools==80.3.1", "setuptools-scm==8.3.1", "wheel==0.45.1", "auditwheel==6.3.0"] build-backend = "setuptools.build_meta" [project] diff --git a/setup.py b/setup.py index abe2fd6e2..48abac8a9 100644 --- a/setup.py +++ b/setup.py @@ -19,6 +19,7 @@ import subprocess import sys import zipfile +from pathlib import Path from typing import Dict driver_version = "1.52.0" @@ -176,7 +177,7 @@ def _build_wheel( if InWheel: wheelhouse_whl = os.path.join("wheelhouse", os.path.basename(whlfile)) shutil.move(whlfile, wheelhouse_whl) - with InWheel(in_wheel=wheelhouse_whl, out_wheel=whlfile): + with InWheel(in_wheel=Path(wheelhouse_whl), out_wheel=Path(whlfile)): print(f"Updating RECORD file of {whlfile}") print("Copying new wheels") shutil.rmtree("wheelhouse")