Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion micropython/mip/manifest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
metadata(version="0.4.0", description="On-device package installer for network-capable boards")
metadata(version="0.4.1", description="On-device package installer for network-capable boards")

require("requests")

Expand Down
2 changes: 1 addition & 1 deletion micropython/mip/mip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def _install_package(package, index, target, version, mpy):
def install(package, index=None, target=None, version=None, mpy=True):
if not target:
for p in sys.path:
if p.endswith("/lib"):
if not p.startswith("/rom") and p.endswith("/lib"):
target = p
break
else:
Expand Down
Loading