Skip to content

Commit

Permalink
Version 9.9.3 (#198)
Browse files Browse the repository at this point in the history
* Version 9.9.3

* downgrade clarifai grpc to 9.8.1
  • Loading branch information
sainivedh authored Oct 16, 2023
1 parent 35b1c31 commit 8167f25
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.9.2
9.9.3
2 changes: 1 addition & 1 deletion clarifai/versions.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

CLIENT_VERSION = "9.9.2"
CLIENT_VERSION = "9.9.3"
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]))
12 changes: 8 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
with open("VERSION", "r") as f:
version = f.read().strip()

with open("requirements.txt", "r") as fh:
install_requires = fh.read().split('\n')

if install_requires and install_requires[-1] == '':
# Remove the last empty line
install_requires = install_requires[:-1]

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

setuptools.setup(
Expand All @@ -26,10 +33,7 @@
],
license="Apache 2.0",
python_requires='>=3.8',
install_requires=[
"clarifai-grpc>=9.8.1", "tritonclient==2.34.0", "packaging", "tqdm>=4.65.0",
"rich==13.4.2", "PyYAML==6.0.1", "schema==0.7.5"
],
install_requires=install_requires,
entry_points={
"console_scripts": [
"clarifai-model-upload-init = clarifai.models.model_serving.cli.repository:model_upload_init",
Expand Down

0 comments on commit 8167f25

Please sign in to comment.