Skip to content
Closed
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
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ def mypy(session):
# Pin to click==8.1.3 to workaround https://github.com/pallets/click/issues/2558
session.install(
"mypy",
"types-protobuf<=3.19.7",
"types-protobuf",
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

While removing the pin is necessary, it's good practice to document why a dependency is unpinned, especially when it was pinned before. This provides context for future maintainers. An inline comment would be a great addition here.

Suggested change
"types-protobuf",
"types-protobuf", # Unpinned to support Python 3.14+

"types-PyYAML",
"types-dataclasses",
"click==8.1.3",
Expand Down
Loading