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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ For notes on changes between major versions, see [Upgrading](./docs/upgrading.md

## Prerequisites

- The Pinecone Python SDK is compatible with Python 3.9 and greater. It has been tested with CPython versions from 3.9 to 3.13.
- The Pinecone Python SDK is compatible with Python 3.10 and greater. It has been tested with CPython versions from 3.10 to 3.13.
- Before you can use the Pinecone SDK, you must sign up for an account and find your API key in the Pinecone console dashboard at [https://app.pinecone.io](https://app.pinecone.io).

## Installation
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ For notes on changes between major versions, see [Upgrading](./docs/upgrading.md
Prerequisites
=============

* The Pinecone Python SDK is compatible with Python 3.9 and greater. It has been tested with CPython versions from 3.9 to 3.13.
* The Pinecone Python SDK is compatible with Python 3.10 and greater. It has been tested with CPython versions from 3.10 to 3.13.
* Before you can use the Pinecone SDK, you must sign up for an account and find your API key in the Pinecone console dashboard at `https://app.pinecone.io <https://app.pinecone.io>`_.

Installation
Expand Down
24 changes: 10 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "pinecone"
version = "7.3.0"
description = "Pinecone client and SDK"
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [
{ name = "Pinecone Systems, Inc.", email = "support@pinecone.io" }
Expand All @@ -17,7 +17,6 @@ classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -40,7 +39,7 @@ dependencies = [

[project.optional-dependencies]
grpc = [
"grpcio>=1.44.0,<1.59.0; python_version>='3.8' and python_version<'3.11'",
"grpcio>=1.44.0,<1.59.0; python_version<'3.11'",
"grpcio>=1.59.0,<1.68.0; python_version>='3.11' and python_version<'3.13'",
"grpcio>=1.68.0; python_version>='3.13'",
"googleapis-common-protos>=1.66.0",
Expand All @@ -56,36 +55,33 @@ types = [
"mypy>=1.6.1,<2.0.0",
"types-urllib3>=1.26.25.14,<1.27.0.0",
"grpc-stubs>=1.53.0.3,<1.54.0.0",
"pandas-stubs>=2.1.1.230928,<2.2.0.0; python_version>='3.9'",
"pandas-stubs>=1.5.3.230321,<1.6.0.0; python_version>='3.8' and python_version<'3.9'",
"pandas-stubs>=2.1.1.230928,<2.2.0.0",
"types-tqdm>=4.66.0.3,<4.67.0.0",
"types-protobuf>=4.24.0.4,<4.25.0.0",
"types-python-dateutil>=2.9.0.20241003",
]
dev = [
"pre-commit>=3.0.0,<4.0.0",
"numpy>=1.22; python_version>='3.9'",
"numpy>=1.21,<1.22; python_version>='3.8' and python_version<'3.9'",
"pandas>=1.3.5,<2.2.3; python_version>='3.9' and python_version<'3.13'",
"numpy>=1.22",
"pandas>=1.3.5,<2.2.3; python_version<'3.13'",
"pandas>=2.2.3; python_version>='3.13'",
"pytest==8.2.0",
"pytest-asyncio>=0.25.2,<0.26.0",
"pytest-cov==2.10.1",
"pytest-mock==3.6.1",
"pytest-retry>=1.7.0,<2.0.0",
"pytest-timeout==2.2.0",
"pytest-benchmark==5.0.0; python_version>='3.9' and python_version<'4.0'",
"pytest-benchmark==5.0.0; python_version<'4.0'",
"urllib3_mock==0.3.3",
"responses>=0.8.1",
"ruff>=0.9.3,<0.10.0",
"beautifulsoup4>=4.13.3,<5.0.0",
"vprof>=0.38,<0.39",
"tuna>=0.5.11,<0.6.0",
"python-dotenv>=1.1.0,<2.0.0",
"sphinx>=7.4.7,<8.0.0; python_version>='3.9' and python_version<'3.11'",
"sphinx>=7.4.7,<8.0.0; python_version<'3.11'",
"sphinx>=8.2.3,<9.0.0; python_version>='3.11'",
"myst-parser>=3.0.1,<4.0.0; python_version>='3.9' and python_version<'3.10'",
"myst-parser>=4.0.1,<5.0.0; python_version>='3.10'",
"myst-parser>=4.0.1,<5.0.0",
]

[project.scripts]
Expand Down Expand Up @@ -124,7 +120,7 @@ exclude = [

line-length = 100
indent-width = 4
target-version = "py39"
target-version = "py310"

[tool.ruff.lint]
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
Expand Down Expand Up @@ -161,4 +157,4 @@ docstring-code-line-length = "dynamic"

[tool.black]
line-length = 100
target-version = ["py39"]
target-version = ["py310"]
Loading
Loading