Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 0.0.2 #22

Merged
merged 4 commits into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ git clone [email protected]:triton-inference-server/triton_cli.git
cd triton_cli

# Should be pointing at directory containing pyproject.toml
pip install -e .
pip install .

# Try it out
triton -h
Expand Down
4 changes: 0 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,6 @@ build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/triton_cli/__init__.py"

# To ship templates as a part of the package
[tool.hatch.build.targets.wheel.force-include]
"src/triton_cli/templates" = "triton_cli/templates"

# Pre-commit hook tool configs
[tool.codespell]
# note: pre-commit passes explicit lists of files here, which this skip file list doesn't override -
Expand Down
2 changes: 1 addition & 1 deletion src/triton_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

__version__ = "0.0.1"
__version__ = "0.0.2"
4 changes: 2 additions & 2 deletions src/triton_cli/repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
from directory_tree import display_tree

from triton_cli.constants import DEFAULT_MODEL_REPO, LOGGER_NAME
from triton_cli.trt_llm.json_parser import parse_and_substitute
from triton_cli.trt_llm.engine_config_parser import parse_and_substitute

logger = logging.getLogger(LOGGER_NAME)

Expand All @@ -55,7 +55,7 @@
SOURCE_PREFIX_HUGGINGFACE = "hf:"
SOURCE_PREFIX_NGC = "ngc:"

TRT_TEMPLATES_PATH = Path(__file__).parent / "templates" / "trtllm"
TRT_TEMPLATES_PATH = Path(__file__).parent / "templates" / "trt_llm"

# Support changing destination dynamically to point at
# pre-downloaded checkpoints in various circumstances
Expand Down