We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1010bf commit 66b7db9Copy full SHA for 66b7db9
empack/filter_env.py
@@ -39,7 +39,7 @@ def iterate_pip_pkg_record(env_prefix):
39
with open(dist_info / "RECORD") as record:
40
files = csv.reader(record)
41
all_files = [_file[0] for _file in files]
42
- all_files_paths = [relative_site_packages / _file for _file in all_files]
+ all_files_paths = [str(relative_site_packages / _file) for _file in all_files]
43
44
yield dict(
45
name=package_name,
0 commit comments