Skip to content

Commit

Permalink
Bump version to 0.0.2 (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmccorm4 authored Jan 17, 2024
1 parent bd76c71 commit b87a553
Show file tree
Hide file tree
Showing 13 changed files with 4 additions and 8 deletions.
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
File renamed without changes.

0 comments on commit b87a553

Please sign in to comment.