Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

logger = logging.getLogger(__name__)

_instruments = ("pinecone >= 5.1.0, <9",)
_instruments = ("pinecone >= 5.1.0, <10",)

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

πŸ—„οΈ Data Integrity & Integration | 🟑 Minor | ⚑ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

rg -n -C 4 'pinecone|Pinecone|<9|<10|9\.1\.0' \
  packages/opentelemetry-instrumentation-pinecone/pyproject.toml \
  packages/opentelemetry-instrumentation-pinecone/opentelemetry/instrumentation/pinecone/__init__.py \
  packages/opentelemetry-instrumentation-pinecone/tests

Repository: traceloop/openllmetry

Length of output: 50377


Align Pinecone dependency ranges. pyproject.toml still restricts the installation extra and test dependency to <9. Change both constraints to pinecone>=5.1.0,<10.

πŸ€– Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In
`@packages/opentelemetry-instrumentation-pinecone/opentelemetry/instrumentation/pinecone/__init__.py`
at line 37, Update the Pinecone dependency constraints in pyproject.toml for
both the installation extra and test dependency from <9 to <10, matching the
_instruments range of pinecone>=5.1.0,<10. Preserve the existing lower bound and
dependency declarations.


WRAPPED_METHODS = [
{
Expand Down