absurdfarce commented on PR #1268: URL: https://github.com/apache/cassandra-python-driver/pull/1268#issuecomment-3873284361
Oh Claude, once again your directions confuse me. The build failure snippet above references 3.29.3 suggesting that the issue applies to installs of a version already deployed on pypi while your test plan references 3.30.0 suggesting that it only applies to what's in git. 🤦 I've confirmed that package installs are only failing on Python 3.14. The following sequence works without issue on everything exception that version: ``` $ uv venv --python 3.14 test-venv $ . ./test-venv/bin/activate $ uv pip install --upgrade setuptools # confirm this gives you 82.0.0 $ uv pip install cassandra-driver ``` Presumably 3.14 fails because we don't have wheels for 3.14 so you're forced to actually do a source build on package install. It's relevant here that 3.29.3 doesn't include 3.14 as a supported platform. sdist builds look like they might be a different story. Still doing some digging on that. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

