Skip to content

Commit 6d19b57

Browse files
committed
changing version formatting so that upgrading will work
1 parent 75e957b commit 6d19b57

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

clients/python/llmengine/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.0.0.b15"
15+
__version__ = "0.0.0b15"
1616

1717
import os
1818
from typing import Sequence
@@ -76,6 +76,8 @@ def check_version():
7676
current_version = __version__
7777
response = requests.get("https://pypi.org/pypi/scale-llm-engine/json")
7878
latest_version = response.json()["info"]["version"]
79+
print(current_version)
80+
print(latest_version)
7981

8082
if current_version != latest_version:
8183
print(

0 commit comments

Comments
 (0)