Skip to content

Commit

Permalink
fix/unpin-deps
Browse files Browse the repository at this point in the history
  • Loading branch information
harini-venkataraman committed Jan 31, 2025
1 parent 9d5c60b commit c842bdc
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies = [
"social-auth-app-django==5.3.0", # For OAuth
"social-auth-core==4.4.2", # For OAuth
"unstract-sdk~=0.56.0rc4",
"gcsfs",
"gcsfs~=2024.10.0",
# ! IMPORTANT!
# Indirect local dependencies usually need to be added in their own projects
# as: https://pdm-project.org/latest/usage/dependency/#local-dependencies.
Expand Down
2 changes: 1 addition & 1 deletion platform-service/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies = [
"cryptography>=41.0.7",
"requests>=2.31.0",
"unstract-sdk~=0.56.0rc4",
"gcsfs",
"gcsfs~=2024.10.0",
"unstract-flags @ file:///${PROJECT_ROOT}/../unstract/flags",
]
requires-python = ">=3.9,<3.11.1"
Expand Down
4 changes: 2 additions & 2 deletions prompt-service/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ dependencies = [
"llama-index==0.12.8",
"python-dotenv==1.0.0",
"unstract-sdk~=0.56.0rc4",
"gcsfs",
"s3fs",
"gcsfs~=2024.10.0",
"s3fs~=2024.10.0",
"redis>=5.0.3",
"unstract-core @ file:///${PROJECT_ROOT}/../unstract/core",
"unstract-flags @ file:///${PROJECT_ROOT}/../unstract/flags",
Expand Down
2 changes: 1 addition & 1 deletion tools/classifier/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# Required for all unstract tools
unstract-sdk~=0.56.0rc4
# Required for remote storage support
s3fs[boto3]
s3fs[boto3]~=2024.10.0
2 changes: 1 addition & 1 deletion tools/structure/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# Required for all unstract tools
unstract-sdk~=0.56.0rc4
# Required for remote storage support
s3fs[boto3]
s3fs[boto3]~=2024.10.0
2 changes: 1 addition & 1 deletion tools/text_extractor/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# Required for all unstract tools
unstract-sdk~=0.56.0rc4
# Required for remote storage support
s3fs[boto3]
s3fs[boto3]~=2024.10.0
4 changes: 2 additions & 2 deletions unstract/connectors/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ dependencies = [
"google-cloud-secret-manager==2.16.1",
"google-cloud-storage==2.9.0",
# Filesystem connectors
"s3fs[boto3]", # For Minio
"s3fs[boto3]~=2024.10.0", # For Minio
"PyDrive2[fsspec]==1.15.4", # For GDrive
"oauth2client==4.1.3", # For GDrive
"dropboxdrivefs==1.4.1", # For Dropbox
"boxfs==0.2.1", # For Box
"gcsfs", # For GoogleCloudStorage
"gcsfs~=2024.10.0", # For GoogleCloudStorage
"adlfs==2023.8.0", # For AzureCloudStorage
# Database connectors
"psycopg2-binary==2.9.9", # For Postgres, Redshift
Expand Down

0 comments on commit c842bdc

Please sign in to comment.