Skip to content

v1.1.0

Latest

Choose a tag to compare

@HuiGao-NV HuiGao-NV released this 19 Dec 13:55
· 1526 commits to main since this release
48b7b5d

Know Issue

  • If users create project with tensorrt-llm==1.1.0 in pyproject.toml file as dependency as below:

    dependencies = [
      "tensorrt-llm==1.1.0",
    ]

    when users install project dependencies with command uv sync, error will happend with message:

    No solution found when resolving dependencies for split (markers: python_full_version >= '3.13' and sys_platform == 'darwin'):
    ╰─▶ Because patchelf==0.18.0.0 was yanked (reason: https://github.com/mayeut/patchelf-pypi/issues/87) and tensorrt-llm==1.1.0 depends on patchelf==0.18.0, we can
        conclude that tensorrt-llm==1.1.0 cannot be used.
        And because your project depends on tensorrt-llm==1.1.0, we can conclude that your project's requirements are unsatisfiable.". 
    

    That's because patchelf 0.18.0 was yanked by author.

    A valid work around for this issue is to add block in pyproject.toml:

    [tool.uv]
     override-dependencies = [
     "patchelf==0.17.2.4",
    ]

What's Changed

New Contributors

Full Changelog: v1.0.0...v1.1.0