Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove requests and bump to 11.0.4 #205

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
11.0.3
11.0.4
2 changes: 1 addition & 1 deletion clarifai_grpc/channel/http_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from clarifai_grpc.channel.errors import ApiError

CLIENT_VERSION = "11.0.3"
CLIENT_VERSION = "11.0.4"
OS_VER = os.sys.platform
PYTHON_VERSION = ".".join(
map(
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setuptools.setup(
name="clarifai-grpc",
version="11.0.3",
version="11.0.4",
author="Clarifai",
author_email="support@clarifai.com",
description="Clarifai gRPC API Client",
Expand All @@ -28,7 +28,6 @@
"grpcio>=1.68.0 ; python_version >= '3.13'",
"protobuf>=3.20.3",
"googleapis-common-protos>=1.57.0",
"requests>=2.28.1",
],
package_data={p: ["*.pyi"]
for p in packages},
Expand Down
Loading