Skip to content

Commit

Permalink
Version 9.9.1 (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
sainivedh authored Oct 10, 2023
1 parent c0f4d41 commit 6b61582
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.9.0
9.9.1
7 changes: 6 additions & 1 deletion clarifai/versions.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
import os

CLIENT_VERSION = '9.9.0'
file_path = os.path.abspath(
os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), "VERSION"))
with open(file_path, "r") as f:
version = f.read().strip()

CLIENT_VERSION = f"{version}"
OS_VER = os.sys.platform
PYTHON_VERSION = '.'.join(
map(str, [os.sys.version_info.major, os.sys.version_info.minor, os.sys.version_info.micro]))
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@
with open("README.md", "r") as fh:
long_description = fh.read()

with open("VERSION", "r") as f:
version = f.read().strip()

packages = setuptools.find_namespace_packages(include=["clarifai*"])

setuptools.setup(
name="clarifai",
version="9.9.0",
version=f"{version}",
author="Clarifai",
author_email="[email protected]",
description="Clarifai Python SDK",
Expand Down

0 comments on commit 6b61582

Please sign in to comment.