Skip to content
Draft
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
6 changes: 3 additions & 3 deletions deploy/mlflow-triton-plugin/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

# Copyright 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright 2021-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
Expand Down Expand Up @@ -29,11 +29,11 @@

setup(
name="mlflow-triton",
version="0.2.0",
version="0.2.1",
description="Triton Mlflow Deployment",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=["mlflow>=2.2.1,<3.0", "tritonclient[all]", "boto3"],
install_requires=["mlflow>=3.1.1", "tritonclient[all]", "boto3"],
entry_points={"mlflow.deployments": "triton=mlflow_triton.deployments"},
)
Loading