Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ sw-python = 'skywalking.bootstrap.cli.sw_python:start'
python = ">=3.8, <=3.13"
grpcio = '*'
grpcio-tools = '*'
packaging = '*'
packaging = '25.0'
Copy link

Copilot AI Jan 12, 2026

Choose a reason for hiding this comment

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

The PR description lacks critical information about why the packaging dependency needs to be pinned to version 25.0. Without context about what issue this fixes or why this specific version is required, it's difficult to validate whether this is the correct approach.

Additionally, the poetry.lock file currently shows packaging version 24.2 is in use. If version 25.0 doesn't exist yet or if there are compatibility concerns, this change could break the build. Please verify that:

  1. Version 25.0 of the packaging library actually exists and is available on PyPI
  2. It's compatible with the Python version constraints (>=3.8, <=3.13)
  3. There's a documented reason for this specific version pin (e.g., a bug fix, breaking change in a newer version, etc.)
Suggested change
packaging = '25.0'
packaging = '24.2'

Copilot uses AI. Check for mistakes.
wrapt = '*'
psutil = '<=5.9.5'
requests = { version = ">=2.26.0", optional = true }
Expand Down
Loading