-
Notifications
You must be signed in to change notification settings - Fork 278
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
py3-aiohttp/3.11.10 package update #35967
Conversation
octo-sts
bot
commented
Dec 6, 2024
Signed-off-by: wolfi-bot <[email protected]>
Gen AI suggestions to solve the build error: Based on the error output and context provided, I'll analyze this build failure: • Detected Error: No explicit error message is shown, but the git-checkout step appears to be failing silently • Error Category: Version/Configuration • Failure Point: Pipeline git-checkout step trying to fetch tag v3.11.10 • Root Cause Analysis: The git-checkout step is failing likely because the tag v3.11.10 doesn't exist in the upstream repository. Looking at the changelog provided, this appears to be a new version that may not be properly tagged yet. • Suggested Fix:
package:
name: py3-aiohttp
version: 3.11.9 # Change to latest released version
pipeline:
- uses: git-checkout
with:
repository: https://github.com/aio-libs/aiohttp/
tag: v3.11.9 # Match with latest released version
expected-commit: # Update with correct commit hash for v3.11.9 • Explanation: The build is failing because it's trying to checkout a tag that doesn't exist. The version 3.11.10 appears to be new based on the changelog but may not be officially released and tagged yet. • Additional Notes:
• References:
|
Gen AI suggestions to solve the build error: Based on the build error, I'll provide a detailed analysis and solution: • Detected Error:
• Error Category: Build Configuration • Failure Point: During the Cython compilation step when building the aiohttp._websocket.mask extension • Root Cause Analysis: • Suggested Fix: - name: Python Setup
runs: |
mkdir -p .git
python${{range.key}} tools/gen.py
python${{range.key}} -m cython -3 aiohttp/*.pyx aiohttp/_websocket/*.pyx -I aiohttp
rm -rf .git • Explanation: • Additional Notes:
• References:
|