Skip to content
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
5 changes: 4 additions & 1 deletion airflow/providers/pinecone/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ integrations:

dependencies:
- apache-airflow>=2.6.0
- pinecone-client>=2.2.4
# Pinecone Python SDK v3.0.0 was released at 2024-01-16 and introduce some breaking changes.
# It's crucial to adhere to the v3.0.0 Migration Guide before the upper-bound limitation can be removed.
# https://canyon-quilt-082.notion.site/Pinecone-Python-SDK-v3-0-0-Migration-Guide-056d3897d7634bf7be399676a4757c7b
- pinecone-client>=2.2.4,<3.0

hooks:
- integration-name: Pinecone
Expand Down
2 changes: 1 addition & 1 deletion generated/provider_dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@
"pinecone": {
"deps": [
"apache-airflow>=2.6.0",
"pinecone-client>=2.2.4"
"pinecone-client>=2.2.4,<3.0"
],
"devel-deps": [],
"cross-providers-deps": [],
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ pgvector = [
"pgvector>=0.2.3",
]
pinecone = [
"pinecone-client>=2.2.4",
"pinecone-client>=2.2.4,<3.0",
]
postgres = [
"apache-airflow[common_sql]",
Expand Down