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
import csv, json, requests
package = 'inference'
pypi_url = f'https://pypi.python.org/pypi/{package}/json'
data = requests.get(pypi_url).json()
reqs = data['info']['requires_dist']
print([r for r in reqs if 'rich' in r])
['rich<13.10.0,>=13.0.0', 'rich<13.10.0,>=13.0.0', 'rich~=13.0.0']
Additional
No response
Are you willing to submit a PR?
Yes I'd like to help by submitting a PR!
The text was updated successfully, but these errors were encountered:
Search before asking
Bug
Per this issue, the version dependency for rich should have been bumped. PyPI metadata retains old dependency, however, so the version clash persists.
Requires-Dist: rich<13.10.0,>=13.0.0
Requires-Dist: PyYAML~=6.0.0
Requires-Dist: supervision<=0.30.0,>=0.25.1
Requires-Dist: opencv-python<=4.10.0.84,>=4.8.1.78
Requires-Dist: tqdm<5.0.0,>=4.0.0
Requires-Dist: nvidia-ml-py<13.0.0
Requires-Dist: py-cpuinfo~=9.0.0
Requires-Dist: aiohttp<=3.10.11,>=3.9.0
Requires-Dist: backoff~=2.2.0
Requires-Dist: pandas<2.3.0,>=2.0.0
Requires-Dist: rich~=13.0.0
Environment
python 3.11 slim bookworm
Minimal Reproducible Example
Additional
No response
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: