Skip to content

Commit aa0182d

Browse files
Allow support for pinecone-plugin-inference >=2.0.0, <4.0.0 (#419)
## Problem We're planning on bumping the inference plugin to a new major version, and we need to loosen the requirements with a version range to support installing the new plugin. ## Solution Loosen version requirements on pinecone-plugin-inference to allow up to but not including version 4.0.0: `pinecone-plugin-inference = ">=2.0.0, <4.0.0"` ## Type of Change - [ ] Bug fix (non-breaking change which fixes an issue) - [X] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] This change requires a documentation update - [ ] Infrastructure change (CI configs, etc) - [ ] Non-code change (docs, etc) - [ ] None of the above: (explain here) ## Test Plan n/a
1 parent 98a3f79 commit aa0182d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

poetry.lock

Lines changed: 2 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ lz4 = { version = ">=3.1.3", optional = true }
5252
protobuf = { version = "^4.25", optional = true }
5353
protoc-gen-openapiv2 = {version = "^0.0.1", optional = true }
5454
pinecone-plugin-interface = "^0.0.7"
55-
pinecone-plugin-inference = "^2.0.0"
55+
pinecone-plugin-inference = ">=2.0.0, <4.0.0"
5656
python-dateutil = ">=2.5.3"
5757

5858
[tool.poetry.group.types]

0 commit comments

Comments
 (0)