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

RAI-16267 Removed unnecessary dependencies, picked newer versions of dependencies #136

Merged
merged 3 commits into from
Oct 11, 2023
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
8 changes: 3 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
grpcio==1.54.0
grpcio-tools==1.47.0
protobuf==3.20.2
pyarrow==6.0.1
requests==2.30.0
requests-toolbelt==1.0.0
urllib3==2.0.2
protobuf==3.20.3
pyarrow==10.0.1
requests-toolbelt==1.0.0
5 changes: 2 additions & 3 deletions setup.py

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@antikus should we update classifiers in setup.py since SDK won't support Python 3.7?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually, it's not the case. The SDK works on 3.7. Initially when I was cleaning up the dependencies and was planning to have snowflake-snowpark-python package as a dependency that would make 3.7 not supportable since the snoflakw library requires Python >=3.8

Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,9 @@
],
description="The RelationalAI Software Development Kit for Python",
install_requires=[
"ed25519==1.5",
"pyarrow==6.0.1",
"pyarrow==10.0.1",
"requests-toolbelt==1.0.0",
"protobuf==3.20.2"],
"protobuf==3.20.3"],
license="http://www.apache.org/licenses/LICENSE-2.0",
long_description="Enables access to the RelationalAI REST APIs from Python",
long_description_content_type="text/markdown",
Expand Down
Loading