-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
uv fails to compile proper --universal
txt file with openai-whisper
#6852
Comments
Do you mind including the full command you ran to reproduce? |
sure reqs.in
command
|
if I insert platform tags to .txt file manually after, everything works fine :) |
I think this is an issue with requirements = []
if sys.platform.startswith("linux") and platform.machine() == "x86_64":
requirements.append("triton>=2.0.0,<3") They should apply those constraints as environment markers, they shouldn't depend on the host machine... I can file a PR. |
Actually confused because that variable isn't even used. |
Ah ok, unfortunately this change is unreleased: openai/whisper#1887. You'll have to use:
In order to access it. |
platform: macos
version: 0.4.0
openai-whisper has following dependency:
however, running
uv pip compile
with--universal
on macos does't preserve platform tagswhat you can see in the output is plain:
this results in inability to install packages on macos
The text was updated successfully, but these errors were encountered: