Skip to content

Commit 946a62a

Browse files
authored
Fix pinecone client package rename after 6.0.0 (#46980)
1 parent 2d267dd commit 946a62a

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

generated/provider_dependencies.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1073,7 +1073,7 @@
10731073
"pinecone": {
10741074
"deps": [
10751075
"apache-airflow>=2.9.0",
1076-
"pinecone-client>=3.1.0"
1076+
"pinecone>=3.1.0"
10771077
],
10781078
"devel-deps": [],
10791079
"plugins": [],

providers/pinecone/README.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ The package supports the following python versions: 3.9,3.10,3.11,3.12
5151
Requirements
5252
------------
5353

54-
=================== ==================
55-
PIP package Version required
56-
=================== ==================
57-
``apache-airflow`` ``>=2.9.0``
58-
``pinecone-client`` ``>=3.1.0``
59-
=================== ==================
54+
================== ==================
55+
PIP package Version required
56+
================== ==================
57+
``apache-airflow`` ``>=2.9.0``
58+
``pinecone`` ``>=3.1.0``
59+
================== ==================
6060

6161
The changelog for the provider package can be found in the
6262
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-pinecone/2.2.1/changelog.html>`_.

providers/pinecone/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ requires-python = "~=3.9"
5656
# Any change in the dependencies is preserved when the file is regenerated
5757
dependencies = [
5858
"apache-airflow>=2.9.0",
59-
"pinecone-client>=3.1.0",
59+
"pinecone>=3.1.0",
6060
]
6161

6262
[project.urls]

providers/pinecone/src/airflow/providers/pinecone/get_provider_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@ def get_provider_info():
6363
"python-modules": ["airflow.providers.pinecone.operators.pinecone"],
6464
}
6565
],
66-
"dependencies": ["apache-airflow>=2.9.0", "pinecone-client>=3.1.0"],
66+
"dependencies": ["apache-airflow>=2.9.0", "pinecone>=3.1.0"],
6767
}

0 commit comments

Comments
 (0)