Skip to content

Commit 4798790

Browse files
Merge pull request #1695 from basetenlabs/bump-version-0.9.99
Release 0.9.100
2 parents 88f7fa0 + ba348ca commit 4798790

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

poetry.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "truss"
3-
version = "0.9.98"
3+
version = "0.9.100"
44
description = "A seamless bridge from model development to model delivery"
55
license = "MIT"
66
readme = "README.md"
@@ -71,7 +71,7 @@ truss-docker-build-setup = "truss.contexts.docker_build_setup:docker_build_setup
7171
# isolated.
7272
[tool.poetry.dependencies]
7373
# "base" dependencies.
74-
python = ">=3.9,<=3.13.3"
74+
python = ">=3.9,<3.14"
7575
huggingface_hub = ">=0.25.0"
7676
pydantic = ">=2.10.0"
7777
PyYAML = ">=6.0"

truss/base/trt_llm_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ class TrussTRTLLMBuildConfiguration(PydanticTrTBaseModel):
184184
speculator: Optional[TrussSpeculatorConfiguration] = None
185185
lora_adapters: Optional[
186186
Dict[
187-
Annotated[str, StringConstraints(pattern=r"^[a-z0-9]+$")],
187+
Annotated[str, StringConstraints(pattern=r"^[a-zA-Z0-9_\-\.]+$")],
188188
CheckpointRepository,
189189
]
190190
] = None

truss/templates/control/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ loguru>=0.7.2
66
python-json-logger>=2.0.2
77
tenacity>=8.1.0
88
# To avoid divergence, this should follow the latest release.
9-
truss==0.9.96
9+
truss==0.9.100
1010
uvicorn>=0.24.0
1111
uvloop>=0.19.0
1212
websockets>=10.0

truss/tests/test_truss_handle.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,12 +370,12 @@ def test_local_no_params_init_custom_model(no_params_init_custom_model):
370370
@pytest.mark.integration
371371
def test_custom_python_requirement(custom_model_truss_dir_with_pre_and_post):
372372
th = TrussHandle(custom_model_truss_dir_with_pre_and_post)
373-
th.add_python_requirement("theano")
373+
th.add_python_requirement("pandas")
374374
th.add_python_requirement("scipy")
375375
tag = "test-custom-python-req-tag:0.0.1"
376376
container = th.docker_run(tag=tag, local_port=None)
377377
try:
378-
verify_python_requirement_installed_on_container(container, "theano")
378+
verify_python_requirement_installed_on_container(container, "pandas")
379379
verify_python_requirement_installed_on_container(container, "scipy")
380380
finally:
381381
Docker.client().kill(container)

0 commit comments

Comments
 (0)