diff --git a/ci/build_wheel_cuopt.sh b/ci/build_wheel_cuopt.sh index f624b27705..806608e471 100755 --- a/ci/build_wheel_cuopt.sh +++ b/ci/build_wheel_cuopt.sh @@ -41,6 +41,7 @@ EXCLUDE_ARGS=( --exclude "libcusolver.so.*" --exclude "libcusparse.so.*" --exclude "libcuopt.so" + --exclude "libnvJitLink.so*" --exclude "librapids_logger.so" --exclude "librmm.so" ) diff --git a/ci/build_wheel_libcuopt.sh b/ci/build_wheel_libcuopt.sh index 719bc346cf..c6ed61444f 100755 --- a/ci/build_wheel_libcuopt.sh +++ b/ci/build_wheel_libcuopt.sh @@ -103,7 +103,7 @@ EXCLUDE_ARGS=( --exclude "libcusolver.so.*" --exclude "libcusparse.so.*" --exclude "libnccl.so.*" - --exclude "libnvJitLink*" + --exclude "libnvJitLink.so*" --exclude "librapids_logger.so" --exclude "librmm.so" # OpenSSL 3 is intentionally NOT bundled. Resolving libssl.so.3 / libcrypto.so.3 diff --git a/python/cuopt/pyproject.toml b/python/cuopt/pyproject.toml index 8aa6d18398..bba495859b 100644 --- a/python/cuopt/pyproject.toml +++ b/python/cuopt/pyproject.toml @@ -76,7 +76,7 @@ select = [ ] # PyPI hard limit is 1GiB, but try to keep this as small as possible -max_allowed_size_compressed = '55Mi' +max_allowed_size_compressed = '10Mi' [tool.pytest.ini_options] testpaths = ["cuopt/tests"]