Micropip doesn't handle post releases correctly
See original GitHub issueawait micropip.install("xo-gd==3.2.2.post4")
gives
File "/lib/python3.10/site-packages/micropip/_micropip.py", line 345, in find_wheel
release = releases[str(ver)]
KeyError: '3.2.2.post4'
it looks like the data is actually stored under the key 3.2.2-4
.
Issue Analytics
- State:
- Created a year ago
- Comments:7 (7 by maintainers)
Top Results From Across the Web
2.1: Using micropipettes correctly - Biology LibreTexts
The accuracy of a micropipette decreases somewhat when micropipettes are set to deliver volumes close to the lowest values in their range.
Read more >a short step-by-step introduction into proper pipetting - YouTube
We give valuable information on each handling move and explain in detail ... You will learn about the correct aspiration angle and immersion ......
Read more >How to Use a Micropipette - Pipette.com
Information on how to properly use a micropipette including videos and tutorials.
Read more >How to Use a Micropipettor
When withdrawing liquids with the pipettor, always release the plunger slowly. This ... Use the correct pipettor for the volume that is to...
Read more >Pyodide - Read the Docs
After importing Pyodide, only packages from the standard library are ... micropip.install (Python) for pure Python packages with wheels as ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
No it is not.
pip
is not possible to installxo-gd==3.2.2-4
. It seems like it has invalid metadata…So, I think we should discard that version if it has an invalid version string and look for other versions, as people can make a mistake anytime.
Is this a valid version number though?