From 8e5a4e1a55deda6aa99dcb9c154f83b3abeae73b Mon Sep 17 00:00:00 2001 From: Ian Macleod <139901935+ian-scale@users.noreply.github.com> Date: Mon, 27 Nov 2023 15:26:40 -0800 Subject: [PATCH] pypi version bump (#391) --- clients/python/llmengine/__init__.py | 2 +- clients/python/pyproject.toml | 2 +- clients/python/setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/clients/python/llmengine/__init__.py b/clients/python/llmengine/__init__.py index 694a969f..cbc5efa2 100644 --- a/clients/python/llmengine/__init__.py +++ b/clients/python/llmengine/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.0.0b19" +__version__ = "0.0.0b20" import os from typing import Sequence diff --git a/clients/python/pyproject.toml b/clients/python/pyproject.toml index 19225a91..1d45ccc5 100644 --- a/clients/python/pyproject.toml +++ b/clients/python/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "scale-llm-engine" -version = "0.0.0.beta19" +version = "0.0.0.beta20" description = "Scale LLM Engine Python client" license = "Apache-2.0" authors = ["Phil Chen "] diff --git a/clients/python/setup.py b/clients/python/setup.py index 8a9895b2..3c5f5b5f 100644 --- a/clients/python/setup.py +++ b/clients/python/setup.py @@ -3,6 +3,6 @@ setup( name="scale-llm-engine", python_requires=">=3.7", - version="0.0.0.beta19", + version="0.0.0.beta20", packages=find_packages(), )