You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using Python 3.12.2 interpreter at: /usr/local/opt/python@3.12/bin/python3.12Creating virtualenv at: .venv + pip==24.0Activate with: source .venv/bin/activatepip 24.0 from /private/var/folders/xh/trg29z296h70n109kwfk6g800000gn/T/tmp.7vziLpwtzM/.venv/lib/python3.12/site-packages/pip (python 3.12)Using pip 24.0 from /private/var/folders/xh/trg29z296h70n109kwfk6g800000gn/T/tmp.7vziLpwtzM/.venv/lib/python3.12/site-packages/pip (python 3.12)Collecting multiprocess Obtaining dependency information for multiprocess from https://files.pythonhosted.org/packages/0a/7d/a988f258104dcd2ccf1ed40fdc97e26c4ac351eeaf81d76e266c52d84e2f/multiprocess-0.70.16-py312-none-any.whl.metadata Downloading multiprocess-0.70.16-py312-none-any.whl.metadata (7.2 kB)Collecting dill>=0.3.8 (from multiprocess) Obtaining dependency information for dill>=0.3.8 from https://files.pythonhosted.org/packages/c9/7a/cef76fd8438a42f96db64ddaa85280485a9c395e7df3db8158cfec1eee34/dill-0.3.8-py3-none-any.whl.metadata Downloading dill-0.3.8-py3-none-any.whl.metadata (10 kB)Downloading multiprocess-0.70.16-py312-none-any.whl (146 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 146.7/146.7 kB 7.6 MB/s eta 0:00:00Downloading dill-0.3.8-py3-none-any.whl (116 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 116.3/116.3 kB 109.3 MB/s eta 0:00:00Installing collected packages: dill, multiprocessSuccessfully installed dill-0.3.8 multiprocess-0.70.16
The text was updated successfully, but these errors were encountered:
skshetry
changed the title
uv installs wheel for a different python version for multiprocess
uv installs wheel for a different python version for multiprocessMar 7, 2024
## Summary
In the list of tags produced by `Tags::from_env`, higher-priority tags
are expected to come earlier in the list. Right now, though, we push
tags like `py38` before `py312`. So if you run `cargo run pip install
multiprocess -n --reinstall --verbose` on Python 3.12, you get the
`py38` wheel rather than the `py32` wheel.
Closes#2261.
uv pip install multiprocess
installsmultiprocess-0.70.16-py38-none-any.whl
wheel for Python 3.12.pip
correctly installsmultiprocess-0.70.16-py312-none-any.whl
.uv output
Comparing with
pip
pip output
The text was updated successfully, but these errors were encountered: