Tags: crossbario/autobahn-python
Tags
Add tag triggers to all workflows Enable all CI/CD workflows to run on version tags (v*) in addition to branches and PRs. This allows tag pushes to automatically trigger the full build, test, and release pipeline. Modified workflows: - wheels.yml: Added 'tags: [v*]' trigger - wheels-docker.yml: Added 'tags: [v*]' trigger - wheels-arm64.yml: Added 'tags: [v*]' trigger - wstest.yml: Added 'tags: [v*]' trigger - main.yml: Added 'tags: [v*]' trigger This fixes the issue where pushing tag v25.10.2 did not trigger any workflows, requiring manual workflow dispatch instead.
Rel v25.10.2 part2 (#1741) * start new dev branch * Change NVX disable message from RuntimeWarning to info logging When users explicitly disable NVX via AUTOBAHN_USE_NVX=0 (a valid configuration choice), they were getting a noisy RuntimeWarning on every import. This is not a warning condition - it's informational feedback about their intentional configuration. Changed from warnings.warn(RuntimeWarning) to log.info() so users can still see the message if they configure logging to show info level, but it won't be noisy by default. Fixes #1737
Update wamp-cicd submodule for CRLF line ending fixes Update .cicd submodule to include line ending normalization fixes for both upload and download artifact verification actions. Fixes Windows wheel verification failures caused by CRLF line endings in CHECKSUMS.sha256 files.
Fix wheels-docker workflow: remove source dist copy The wheels-docker workflow should only build manylinux wheels, not source distributions. Source distribution is built separately in wheels.yml on Linux x86_64 only. Removed lines attempting to copy dist/*.tar.gz which doesn't exist in this workflow, causing build failures.
Update .cicd submodule: fix download-artifact-verified to use gh api Updates .cicd submodule to commit 7d9bbfc which fixes the critical issue where download-artifact-verified was using 'gh artifact download' command that doesn't exist in GitHub Actions runners. The fixed action now uses 'gh api' with GitHub REST API endpoints: - Lists artifacts via /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts - Filters by name using jq - Downloads zip via /repos/{owner}/{repo}/actions/artifacts/{artifact_id}/zip - Extracts to destination with full retry logic This should resolve the source distribution download failures in release workflows. AI-Disclosure: Assisted by Claude Code (Anthropic, Claude 3.7 Sonnet) Update wamp-cicd submodule for CRLF line ending fixes Update .cicd submodule to include line ending normalization fixes for both upload and download artifact verification actions. Fixes Windows wheel verification failures caused by CRLF line endings in CHECKSUMS.sha256 files.
Update wamp-cicd submodule for CRLF line ending fixes Update .cicd submodule to include line ending normalization fixes for both upload and download artifact verification actions. Fixes Windows wheel verification failures caused by CRLF line endings in CHECKSUMS.sha256 files.
fix: Output Sphinx docs to RTD-required directory Read the Docs requires HTML output to be written to $READTHEDOCS_OUTPUT/html/ when using custom build commands. Changes: - Add mkdir -p $READTHEDOCS_OUTPUT/html/ before build - Change sphinx-build output from docs/_build/html to $READTHEDOCS_OUTPUT/html This fixes the "No HTML content found" error on RTD builds. Ref: https://docs.readthedocs.com/platform/stable/build-customization.html#where-to-put-files
PreviousNext