Skip to content

ci(deps): update python-deps to ==3.14.*#1100

Closed
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/python-deps
Closed

ci(deps): update python-deps to ==3.14.*#1100
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/python-deps

Conversation

@renovate

@renovate renovate Bot commented Jun 2, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
python (source) requires-python minor ==3.13.*==3.14.*

Release Notes

python/cpython (python)

v3.14.5

Compare Source

v3.14.4

Compare Source

v3.14.3

Compare Source

v3.14.2

Compare Source

v3.14.1

Compare Source

v3.14.0

Compare Source


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@myakove-bot

Copy link
Copy Markdown
Collaborator

Report bugs in Issues

Welcome! 🎉

This pull request will be automatically processed with the following features:

Note: You are an auto-verified user. Your PRs will be automatically verified and may be auto-merged when all requirements are met.

🔄 Automatic Actions

  • Reviewer Assignment: Reviewers are automatically assigned based on the OWNERS file in the repository root
  • Size Labeling: PR size labels (XS, S, M, L, XL, XXL) are automatically applied based on changes
  • Issue Creation: Disabled for this repository
  • Pre-commit Checks: pre-commit runs automatically if .pre-commit-config.yaml exists
  • Branch Labeling: Branch-specific labels are applied to track the target branch
  • Auto-verification: Auto-verified users have their PRs automatically marked as verified
  • Labels: All label categories are enabled (default configuration)

📋 Available Commands

PR Status Management

  • /wip - Mark PR as work in progress (adds WIP: prefix to title)
  • /wip cancel - Remove work in progress status
  • /hold - Block PR merging (approvers only)
  • /hold cancel - Unblock PR merging
  • /verified - Mark PR as verified
  • /verified cancel - Remove verification status
  • /reprocess - Trigger complete PR workflow reprocessing (useful if webhook failed or configuration changed)
  • /regenerate-welcome - Regenerate this welcome message

Review & Approval

  • /lgtm - Approve changes (looks good to me)
  • /approve - Approve PR (approvers only)
  • /automerge - Enable automatic merging when all requirements are met (maintainers and approvers only)
  • /assign-reviewers - Assign reviewers based on OWNERS file
  • /assign-reviewer @username - Assign specific reviewer
  • /check-can-merge - Check if PR meets merge requirements

Testing & Validation

  • /retest tox - Run Python test suite with tox
  • /retest build-container - Rebuild and test container image
  • /retest python-module-install - Test Python package installation
  • /retest pre-commit - Run pre-commit hooks and checks
  • /retest conventional-title - Validate commit message format
  • /retest all - Run all available tests

Container Operations

  • /build-and-push-container - Build and push container image (tagged with PR number)
    • Supports additional build arguments: /build-and-push-container --build-arg KEY=value

Cherry-pick Operations

  • /cherry-pick <branch> - Schedule cherry-pick to target branch when PR is merged
    • Multiple branches: /cherry-pick branch1 branch2 branch3

Label Management

  • /<label-name> - Add a label to the PR
  • /<label-name> cancel - Remove a label from the PR

✅ Merge Requirements

This PR will be automatically approved when the following conditions are met:

  1. Approval: /approve from at least one approver
  2. LGTM Count: Minimum 1 /lgtm from reviewers
  3. Status Checks: All required status checks must pass
  4. No Blockers: No wip, hold, has-conflicts labels and PR must be mergeable (no conflicts)
  5. Verified: PR must be marked as verified

📊 Review Process

Approvers and Reviewers

Approvers:

  • myakove
  • rnetser

Reviewers:

  • myakove
  • rnetser
Available Labels
  • hold
  • verified
  • wip
  • lgtm
  • approve
  • automerge
AI Features
  • Conventional Title: Mode: fix (claude/claude-opus-4-6[1m])
  • Cherry-Pick Conflict Resolution: Enabled (claude/claude-opus-4-6[1m])
  • Test Oracle: Triggers: approved (claude/claude-opus-4-6[1m]); /test-oracle can be used anytime

💡 Tips

  • WIP Status: Use /wip when your PR is not ready for review
  • Verification: The verified label is removed on new commits unless the push is detected as a clean rebase
  • Cherry-picking: Cherry-pick labels are processed when the PR is merged
  • Container Builds: Container images are automatically tagged with the PR number
  • Permission Levels: Some commands require approver permissions
  • Auto-verified Users: Certain users have automatic verification and merge privileges

For more information, please refer to the project documentation or contact the maintainers.

@renovate renovate Bot force-pushed the renovate/python-deps branch from 393a488 to bda33b0 Compare June 4, 2026 12:46
@myakove-bot

Copy link
Copy Markdown
Collaborator

Clean rebase detected — no code changes compared to previous head (393a488).
The following labels were preserved: verified.

@myakove

myakove commented Jun 8, 2026

Copy link
Copy Markdown
Collaborator

/approve
/lgtm

Comment thread pyproject.toml

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tests to Run

The following tests should be run to verify this PR:

Critical (directly affected)

  • webhook_server/tests/test_app.py — Core application test - Python 3.14 runtime compatibility check for FastAPI app initialization and request handling (Medium confidence)
  • webhook_server/tests/test_github_retry.py — Tests asyncio.to_thread and async retry logic - Python 3.14 may have asyncio behavioral changes (Medium confidence)
  • webhook_server/tests/test_github_api.py — Tests GitHub API integration using PyGithub with async wrappers - validates async compatibility under Python 3.14 (Medium confidence)
  • webhook_server/tests/test_config.py — Tests YAML config parsing - PyYAML wheel changed from cp313 to cp314, verifying native extension compatibility (Medium confidence)

Standard (regression safety)

  • webhook_server/tests/test_config_schema.py — Tests schema validation which depends on pydantic (pydantic_core native extension rebuilt for cp314) (Medium confidence)
  • webhook_server/tests/test_context.py — Tests ContextVar usage for thread-safe context - Python 3.14 may have changes to contextvars behavior (Medium confidence)
  • webhook_server/tests/test_helpers.py — Tests core utility functions - general runtime compatibility verification under Python 3.14 (Medium confidence)
  • webhook_server/tests/test_log_viewer.py — Tests WebSocket log streaming - websockets package wheel changed to cp314, verifying native extension compatibility (Medium confidence)
  • webhook_server/tests/test_pull_request_handler.py — Core handler test exercising async patterns and GitHub API calls - validates async compatibility under Python 3.14 (Medium confidence)
  • webhook_server/tests/test_check_run_handler.py — Tests check_run event handling with async operations - verifies async patterns work correctly under Python 3.14 (Medium confidence)
  • webhook_server/tests/test_webhook.py — Tests webhook payload processing with cryptography for signature verification - cryptography wheel changed to cp314 (Medium confidence)
  • webhook_server/tests/test_safe_rotating_handler.py — Tests file I/O with platform-specific flags (os.O_NOFOLLOW) - Python 3.14 may have os module changes (Low confidence)

Summary

  • 12 test files recommended (4 critical, 8 standard)
  • AI Provider: Claude (claude-opus-4-6[1m])

@myakove myakove closed this Jun 8, 2026
auto-merge was automatically disabled June 8, 2026 09:59

Pull request was closed

@renovate

renovate Bot commented Jun 8, 2026

Copy link
Copy Markdown
Contributor Author

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (==3.14.*). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

@renovate renovate Bot deleted the renovate/python-deps branch June 8, 2026 10:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants