Summary
Attempting to install vapi_python (vapi-python) fails due to an unavailable dependency: daily-python. This package cannot be found on PyPI for my environment (Windows, Python 3.12), making the SDK unusable.
Steps to Reproduce
poetry add vapi_python or pip install vapi_python
- Observe error:
ERROR: Could not find a version that satisfies the requirement daily-python (from versions: none)
CopyInsert
Environment
- OS: Windows 10/11 (x86_64)
- Python: 3.12.x
- Poetry:
- pip:
What I Tried
- Regenerating Poetry lockfile
poetry update --no-cache daily-python
- Manual
pip install daily-python
- Checked PyPI and found no compatible wheels
Expected Behavior
vapi_python should install cleanly on supported platforms and Python versions.
Actual Behavior
- Installation fails due to missing
daily-python dependency.
Suggested Solutions
- Publish
daily-python wheels for all major OS/Python combinations.
- Remove or make
daily-python an optional dependency if not required for core SDK usage.
- Provide REST-only minimal SDK for unsupported platforms.
Temporary Workaround
- Cloned the SDK and patched out the
daily-python dependency, but this is not stable for production.
Thank you for your help!