release 0.3.2 (#507)

This commit is contained in:
Adil Hafeez 2025-06-13 17:02:20 -07:00 committed by GitHub
parent 0d6e06dfec
commit 7baec20772
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 153 additions and 132 deletions

View file

@ -19,7 +19,7 @@ source venv/bin/activate
### Step 3: Run the build script
```bash
pip install archgw==0.3.1
pip install archgw==0.3.2
```
## Uninstall Instructions: archgw CLI

View file

@ -10,4 +10,4 @@ SERVICE_NAME_MODEL_SERVER = "model_server"
SERVICE_ALL = "all"
MODEL_SERVER_LOG_FILE = "~/archgw_logs/modelserver.log"
ARCHGW_DOCKER_NAME = "archgw"
ARCHGW_DOCKER_IMAGE = os.getenv("ARCHGW_DOCKER_IMAGE", "katanemo/archgw:0.3.1")
ARCHGW_DOCKER_IMAGE = os.getenv("ARCHGW_DOCKER_IMAGE", "katanemo/archgw:0.3.2")

14
arch/tools/poetry.lock generated
View file

@ -2,7 +2,7 @@
[[package]]
name = "archgw_modelserver"
version = "0.3.1"
version = "0.3.2"
description = "A model server for serving models"
optional = false
python-versions = "*"
@ -405,16 +405,16 @@ type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (>=1.12
[[package]]
name = "typing-extensions"
version = "4.13.2"
description = "Backported and Experimental Type Hints for Python 3.8+"
version = "4.14.0"
description = "Backported and Experimental Type Hints for Python 3.9+"
optional = false
python-versions = ">=3.8"
python-versions = ">=3.9"
files = [
{file = "typing_extensions-4.13.2-py3-none-any.whl", hash = "sha256:a439e7c04b49fec3e5d3e2beaa21755cadbbdc391694e28ccdd36ca4a1408f8c"},
{file = "typing_extensions-4.13.2.tar.gz", hash = "sha256:e6c81219bd689f51865d9e372991c540bda33a0379d5573cddb9a3a23f7caaef"},
{file = "typing_extensions-4.14.0-py3-none-any.whl", hash = "sha256:a1514509136dd0b477638fc68d6a91497af5076466ad0fa6c338e44e359944af"},
{file = "typing_extensions-4.14.0.tar.gz", hash = "sha256:8676b788e32f02ab42d9e7c61324048ae4c6d844a399eebace3d4979d75ceef4"},
]
[metadata]
lock-version = "2.0"
python-versions = "^3.10"
content-hash = "50ac34641326134462d8324d6b1d595be25778c20a59dc6ec14fe064187132d4"
content-hash = "d921267d9020867e4aa89e8fb8ed1a2b7745cc23144d6e5302dfe3a4cf094a35"

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "archgw"
version = "0.3.1"
version = "0.3.2"
description = "Python-based CLI tool to manage Arch Gateway."
authors = ["Katanemo Labs, Inc."]
packages = [
@ -10,7 +10,7 @@ readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
archgw_modelserver = "^0.3.1"
archgw_modelserver = "^0.3.2"
click = "^8.1.7"
jinja2 = "^3.1.4"
jsonschema = "^4.23.0"