-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
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
Failure to Install Celery 4.4.2 Due to Version Parsing Error in Metadata #1686
Comments
This is wild syntax for the version specifier. They're looking for |
The version specifier is just |
See it for yourself :) https://github.com/celery/celery/blob/4.4.2/requirements/default.txt#L1 |
I'll do you one worse, I download and unzip the wheel locally. |
It seems like pip is about to disallow this, so we may not want to allow it ourselves. While pip does install celery currently, it prints this deprecation warning:
|
## Summary Not a fan of this one but we don't have a clear policy on it yet so feels weird to discriminate. Closes #1686.
I Encounter a problem when i tried to install celery package with uv
uv --verbose pip install celery==4.4.2
RESULT
This issue seems to stem from the handling of version tags that do not begin with numeric characters, such as pre-release versions or special tags like (dev, latest, etc.) which is contrary to the observed behavior where versions are expected to start with digits.
The text was updated successfully, but these errors were encountered: