We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8ba279 commit 9102ad7Copy full SHA for 9102ad7
setup.py
@@ -19,6 +19,7 @@
19
import subprocess
20
import sys
21
import zipfile
22
+from pathlib import Path
23
from typing import Dict
24
25
driver_version = "1.51.1"
@@ -167,7 +168,7 @@ def _build_wheel(
167
168
if InWheel:
169
wheelhouse_whl = os.path.join("wheelhouse", os.path.basename(whlfile))
170
shutil.move(whlfile, wheelhouse_whl)
- with InWheel(in_wheel=wheelhouse_whl, out_wheel=whlfile):
171
+ with InWheel(in_wheel=Path(wheelhouse_whl), out_wheel=Path(whlfile)):
172
print(f"Updating RECORD file of {whlfile}")
173
print("Copying new wheels")
174
shutil.rmtree("wheelhouse")
0 commit comments