Skip to content
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions src/confcom/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

logger.warn("Wheel is not available, disabling bdist_wheel hook")

VERSION = "1.3.0"
VERSION = "1.3.1"

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand All @@ -40,7 +40,7 @@
DEPENDENCIES = [
"docker>=6.1.0",
"tqdm==4.65.0",
"deepdiff==6.3.0",
"deepdiff~=8.6.1",
Copy link

Copilot AI Oct 20, 2025

Choose a reason for hiding this comment

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

The version constraint uses ~=8.6.1 which allows updates to 8.6.x but not 8.7.0+. This is a significant jump from 6.3.0 to 8.6.1 (a major version change). Consider: (1) verifying breaking changes in deepdiff's changelog between v6 and v8, (2) ensuring comprehensive test coverage exists for deepdiff usage to catch any behavioral differences, and (3) documenting if specific features from v8.6+ are required or if a wider range like >=8.6.1,<9.0.0 would be more appropriate for compatibility.

Suggested change
"deepdiff~=8.6.1",
"deepdiff>=8.6.1,<9.0.0",

Copilot uses AI. Check for mistakes.
"PyYAML>=6.0.1"
]

Expand Down
Loading