Skip to content
Open
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 requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
wheel==0.45.1
wheel==0.46.2
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

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

This version of wheel (0.46.x) requires Python 3.9 or higher, but the project's setup.cfg (line 8) specifies python_requires = >=3.7. This creates an incompatibility where users with Python 3.7 or 3.8 won't be able to install this package. Either the python_requires in setup.cfg should be updated to >=3.9, or wheel should be pinned to version 0.45.x which still supports Python 3.8.

Suggested change
wheel==0.46.2
wheel==0.45.1

Copilot uses AI. Check for mistakes.
setuptools==80.9.0
importlib-resources==6.1.1
importlib-metadata==7.0.0
Expand Down
Loading