Skip to content
Open
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import subprocess
import sys
import zipfile
from pathlib import Path
from typing import Dict

driver_version = "1.52.0"
Expand Down Expand Up @@ -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")
Expand Down
Loading