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: 1 addition & 3 deletions python/libcuopt/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,7 @@ libcuopt = "libcuopt"
select = [
"distro-too-large-compressed",
]
# PyPI limit is 700 MiB, fail CI before we get too close to that
# 11.X size is 300M compressed and 12.x size is 600M compressed
max_allowed_size_compressed = '700M'
max_allowed_size_compressed = '775M'
Copy link
Member

Choose a reason for hiding this comment

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

The comment above this is not accurate. There is no "PyPI limit" for this project... libcuopt-cu12 wheels are not published to pypi.org, only to pypi.nvidia.com (which does not have size limits).

That comment should be rewritten to something simple and future-proof, like this:

# detect when package size grows significantly
max_allowed_size_compressed = '500M'


[project.scripts]
cuopt_cli = "libcuopt._cli_wrapper:main"
Expand Down