We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dependencies
sdist
In the latest uv release, we split source dist and wheel entries:
[[distribution]] name = "phonemizer" version = "3.2.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/2f/23/090873aa616dfaf9209dc319841204e0e85b3ff6ca6032551216e3dfe153/phonemizer-3.2.1.tar.gz", hash = "sha256:068f85f85a8a9adc638a3787aeacaf71a53e47578b12d773c097433500cd892b", size = 63146 } dependencies = [ { name = "attrs" }, { name = "dlinfo" }, { name = "joblib" }, { name = "segments" }, { name = "typing-extensions" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/cb/5a/b699d5c74959c69728b44692cbacaf1035838ba5dc6aee9b8e80e60637f3/phonemizer-3.2.1-py3-none-any.whl", hash = "sha256:65eef55cd180c1f0be245f68de12bd6014a102ecce0ed8af2584fda853c75ac7", size = 90621 }, ]
We should change the sorting so that sdist and wheels are last:
wheels
[[distribution]] name = "phonemizer" version = "3.2.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "attrs" }, { name = "dlinfo" }, { name = "joblib" }, { name = "segments" }, { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/2f/23/090873aa616dfaf9209dc319841204e0e85b3ff6ca6032551216e3dfe153/phonemizer-3.2.1.tar.gz", hash = "sha256:068f85f85a8a9adc638a3787aeacaf71a53e47578b12d773c097433500cd892b", size = 63146 } wheels = [ { url = "https://files.pythonhosted.org/packages/cb/5a/b699d5c74959c69728b44692cbacaf1035838ba5dc6aee9b8e80e60637f3/phonemizer-3.2.1-py3-none-any.whl", hash = "sha256:65eef55cd180c1f0be245f68de12bd6014a102ecce0ed8af2584fda853c75ac7", size = 90621 }, ]
The text was updated successfully, but these errors were encountered:
Yeah, I like this.
Sorry, something went wrong.
uv.lock
I'll do this real quick.
Sort dependencies before wheels and source distributions (#4897)
71c6a9f
Closes #4889.
charliermarsh
Successfully merging a pull request may close this issue.
In the latest uv release, we split source dist and wheel entries:
We should change the sorting so that
sdist
andwheels
are last:The text was updated successfully, but these errors were encountered: