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 900feb7 commit 6a739e5Copy full SHA for 6a739e5
micropip/transaction.py
@@ -199,7 +199,13 @@ def eval_marker(e: dict[str, str]) -> bool:
199
wheel = WheelInfo.from_url(req.url)
200
check_compatible(wheel.filename)
201
return await self.add_wheel(wheel, extras=req.extras, specifier="")
202
+ else:
203
+ await self._add_requirement_by_name(req)
204
205
+ async def _add_requirement_by_name(
206
+ self,
207
+ req: Requirement,
208
+ ) -> None:
209
try:
210
if self.search_pyodide_lock_first:
211
if await self._add_requirement_from_pyodide_lock(req):
0 commit comments