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 pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Issues = "https://github.com/atlanhq/atlan-python/issues"

[dependency-groups]
dev = [
"mypy~=1.9.0",
"mypy>=1.9,<1.18",
Copy link

Choose a reason for hiding this comment

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

Bug: Mypy Version Range Causes Inconsistent Type Checking

The mypy version constraint was broadened from ~=1.9.0 to >=1.9,<1.18. This wide range (1.9.x through 1.17.x) is problematic as mypy frequently introduces breaking changes between minor versions, leading to inconsistent type checking across environments, new type errors, or build failures.

Fix in Cursor Fix in Web

"ruff~=0.12.8",
"types-requests~=2.31.0.6",
"types-setuptools~=75.8.0.20250110",
Expand Down
Loading