Skip to content
Open
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
9 changes: 6 additions & 3 deletions .github/workflows/dev-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,9 @@ jobs:
# Windows x86_64
- os: windows-latest
target: x86_64-pc-windows-msvc
# Windows arm64
- os: windows-11-arm
target: aarch64-pc-windows-msvc

runs-on: ${{ matrix.os }}
timeout-minutes: 30
Expand Down Expand Up @@ -408,9 +411,9 @@ jobs:
whl_count=$(ls dist/*.whl 2>/dev/null | wc -l)
sdist_count=$(ls dist/*.tar.gz 2>/dev/null | wc -l)
echo "Wheels: $whl_count, Sdists: $sdist_count"
# 7 platforms × 1 abi3 wheel (cp310-abi3, covers Python 3.10+) = 7 wheels
if [ "$whl_count" -lt 7 ]; then
echo "::error::expected at least 7 wheels but got $whl_count — one or more matrix legs may be missing"
# 8 platforms × 1 abi3 wheel (cp310-abi3, covers Python 3.10+) = 8 wheels
if [ "$whl_count" -lt 8 ]; then
echo "::error::expected at least 8 wheels but got $whl_count — one or more matrix legs may be missing"
exit 1
fi
if [ "$sdist_count" -lt 1 ]; then
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/release-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,8 @@ jobs:
target: aarch64-apple-darwin
- os: windows-latest
target: x86_64-pc-windows-msvc
- os: windows-11-arm
target: aarch64-pc-windows-msvc
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
Expand Down Expand Up @@ -528,9 +530,9 @@ jobs:
whl_count=$(ls dist/*.whl 2>/dev/null | wc -l)
sdist_count=$(ls dist/*.tar.gz 2>/dev/null | wc -l)
echo "Wheels: ${whl_count}, sdist: ${sdist_count}"
# 7 platforms × 1 abi3 wheel = 7
if [ "$whl_count" -lt 7 ]; then
echo "::error::expected at least 7 wheels, got ${whl_count}"
# 8 platforms × 1 abi3 wheel = 8
if [ "$whl_count" -lt 8 ]; then
echo "::error::expected at least 8 wheels, got ${whl_count}"
exit 1
fi
if [ "$sdist_count" -lt 1 ]; then
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/release-rc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,8 @@ jobs:
target: aarch64-apple-darwin
- os: windows-latest
target: x86_64-pc-windows-msvc
- os: windows-11-arm
target: aarch64-pc-windows-msvc
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
Expand Down Expand Up @@ -514,9 +516,9 @@ jobs:
whl_count=$(ls dist/*.whl 2>/dev/null | wc -l)
sdist_count=$(ls dist/*.tar.gz 2>/dev/null | wc -l)
echo "Wheels: ${whl_count}, sdist: ${sdist_count}"
# 7 platforms × 1 abi3 wheel = 7
if [ "$whl_count" -lt 7 ]; then
echo "::error::expected at least 7 wheels, got ${whl_count}"
# 8 platforms × 1 abi3 wheel = 8
if [ "$whl_count" -lt 8 ]; then
echo "::error::expected at least 8 wheels, got ${whl_count}"
exit 1
fi
if [ "$sdist_count" -lt 1 ]; then
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release-readiness.yml
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,8 @@ jobs:
target: aarch64-apple-darwin
- os: windows-latest
target: x86_64-pc-windows-msvc
- os: windows-11-arm
target: aarch64-pc-windows-msvc
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ There are no user-facing extras. `pip install pinecone` gives you the whole SDK:
The `dev` and `docs` extras exist for working on the SDK itself, not for using it.

Wheels are published for Linux (glibc and musl, x86-64 and arm64), macOS (Intel and
Apple silicon), and Windows x86-64. Installing from the source distribution instead
builds the gRPC extension from Rust and needs a Rust toolchain.
Apple silicon), and Windows (x86-64 and arm64). Installing from the source
distribution instead builds the gRPC extension from Rust and needs a Rust toolchain.

## pandas is not installed for you

Expand Down