Skip to content

Commit

Permalink
Add print statement, update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
neilmehta24 committed Dec 30, 2024
1 parent 0ed1b91 commit 164b0c6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@ See the fragment files in the `changelog.d directory`_.

.. scriv-insert-here
.. _changelog-0.3.0:

0.3.0 — 2024-12-31
==================

Fixed
-----

- Remove directories from /bin when building layers

.. _changelog-0.2.1:

0.2.1 — 2024-12-05
Expand Down
1 change: 1 addition & 0 deletions src/venvstacks/stacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1390,6 +1390,7 @@ def _ensure_portability(self) -> None:
# so drop them entirely rather than making them portable
for item in self.executables_path.iterdir():
if item.is_dir():
print(f" Dropping directory {str(item)!r}")
shutil.rmtree(item)
elif not item.name.lower().startswith("python"):
print(f" Dropping potentially non-portable file {str(item)!r}")
Expand Down

0 comments on commit 164b0c6

Please sign in to comment.