Conversation
80b1cde to
badcffc
Compare
…ode, use monotonic clock on linux
Keep the blockguard plugin standalone without modifying the core agents package, so the plugin can be merged independently. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
| [tool.cibuildwheel] | ||
| skip = "*-musllinux_*" | ||
| test-command = "python {project}/test_import.py" |
There was a problem hiding this comment.
🟡 Missing cibuildwheel build directive causes wheels to not be built for all supported Python versions
The livekit-blockguard/pyproject.toml is missing the build directive under [tool.cibuildwheel]. The sibling plugin livekit-durable (livekit-plugins/livekit-durable/pyproject.toml:9) explicitly specifies build = "cp310-* cp311-* cp312-* cp313-* cp314-*" to ensure wheels are built for all supported Python versions. Without this directive, cibuildwheel falls back to its built-in defaults, which may not include Python 3.13 and 3.14 — even though setup.py:52 declares python_requires=">=3.10.0,<3.15" and the classifiers list Python 3.13 and 3.14. This would result in missing wheel artifacts for those Python versions during release.
| [tool.cibuildwheel] | |
| skip = "*-musllinux_*" | |
| test-command = "python {project}/test_import.py" | |
| [tool.cibuildwheel] | |
| build = "cp310-* cp311-* cp312-* cp313-* cp314-*" | |
| skip = "*-musllinux_*" | |
| test-command = "python {project}/test_import.py" |
Was this helpful? React with 👍 or 👎 to provide feedback.
No description provided.