Skip to content

Commit

Permalink
Revert "initial commit (#104)" (#106)
Browse files Browse the repository at this point in the history
This reverts commit e2e8819.
  • Loading branch information
martinRenou authored Sep 5, 2024
1 parent a6d76c8 commit 897c502
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions empack/filter_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,10 @@ def iterate_pip_pkg_record(env_prefix):
files = csv.reader(record)
all_files = [_file[0] for _file in files]
all_files_paths = [
str(
relative_site_packages / _file
for _file in all_files
# Excluding .dist-info files
if ".dist-info" not in _file
)
relative_site_packages / _file
for _file in all_files
# Excluding .dist-info files
if ".dist-info" not in _file
]

yield dict(
Expand Down

0 comments on commit 897c502

Please sign in to comment.