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 77dec2d commit 5862c98Copy full SHA for 5862c98
empack/filter_env.py
@@ -39,12 +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 = [
43
- relative_site_packages / _file
44
- for _file in all_files
45
- # Excluding .dist-info files
46
- if ".dist-info" not in _file
47
- ]
+ all_files_paths = [relative_site_packages / _file for _file in all_files]
48
49
yield dict(
50
name=package_name,
0 commit comments