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 @@ -21,7 +21,7 @@ authors = [{ name = "F. F. Martinez Gamo" }]
python = "^3.10"
# Minimal core - truly minimal for primality testing
networkx = {version = "^2.6", optional = true}
cachetools = {version = "^5.0", optional = true}
cachetools = {version = "^7.0", optional = true}
Copy link

Copilot AI Mar 3, 2026

Choose a reason for hiding this comment

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

This bumps cachetools to ^7.0 under [tool.poetry.dependencies], but the project metadata still pins cachetools to <7.0 in the [tool.tnfr.metadata].dependencies list ("cachetools>=5.0,<7.0"). This leaves conflicting dependency constraints depending on which metadata consumers use. Please update the corresponding cachetools constraint there as well (and anywhere else the PEP 621 / custom dependency lists are derived from) to allow v7.

Suggested change
cachetools = {version = "^7.0", optional = true}
cachetools = {version = ">=5.0,<7.0", optional = true}

Copilot uses AI. Check for mistakes.
numpy = {version = "^1.24", optional = true}
scipy = {version = "^1.9", optional = true}
sympy = {version = "^1.10", optional = true}
Expand Down
Loading