Skip to content

Commit 469eb6e

Browse files
hallelx2claude
andcommitted
chore: rename Python SDK to vectorless-sdk on PyPI
The "vectorless" name on PyPI is taken by an unrelated Rust-based project. Renamed to "vectorless-sdk" for the Python package. - pip install vectorless-sdk (import stays: from vectorless import ...) - npm install vectorless (TypeScript — unchanged, name is available) - Updated README badges, DEPLOYMENT.md, pyproject.toml - Build verified: vectorless_sdk-0.1.0.whl - Tests passing: 3/3 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 68091d6 commit 469eb6e

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

DEPLOYMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ git tag py-sdk-v0.2.0 && git push --tags
320320
- [ ] Publish TS SDK: `git tag ts-sdk-v0.1.0 && git push --tags`
321321
- [ ] Verify: `npm install vectorless` → test import
322322
- [ ] Publish Python SDK: `git tag py-sdk-v0.2.0 && git push --tags`
323-
- [ ] Verify: `pip install vectorless --upgrade` → test import
323+
- [ ] Verify: `pip install vectorless-sdk --upgrade` → test import
324324

325325
### Phase 6: End-to-End Verification
326326

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66

77
[![CI](https://github.com/hallelx2/vectorless/actions/workflows/ci.yml/badge.svg)](https://github.com/hallelx2/vectorless/actions/workflows/ci.yml)
88
[![npm](https://img.shields.io/npm/v/vectorless?color=blue&label=npm)](https://www.npmjs.com/package/vectorless)
9-
[![PyPI](https://img.shields.io/pypi/v/vectorless?color=blue&label=pypi)](https://pypi.org/project/vectorless/)
9+
[![PyPI](https://img.shields.io/pypi/v/vectorless-sdk?color=blue&label=pypi)](https://pypi.org/project/vectorless-sdk/)
1010
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
1111
[![TypeScript](https://img.shields.io/badge/TypeScript-5.9-blue?logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
1212
[![Python](https://img.shields.io/badge/Python-3.9+-blue?logo=python&logoColor=white)](https://python.org)
1313
[![Next.js](https://img.shields.io/badge/Next.js-15-black?logo=next.js&logoColor=white)](https://nextjs.org)
1414
[![Fastify](https://img.shields.io/badge/Fastify-5-black?logo=fastify&logoColor=white)](https://fastify.dev)
1515

16-
[Website](https://vectorless.store) | [API Docs](https://api.vectorless.store/health) | [npm](https://www.npmjs.com/package/vectorless) | [PyPI](https://pypi.org/project/vectorless/)
16+
[Website](https://vectorless.store) | [API Docs](https://api.vectorless.store/health) | [npm](https://www.npmjs.com/package/vectorless) | [PyPI](https://pypi.org/project/vectorless-sdk/)
1717

1818
</div>
1919

sdks/python/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Vectorless -- Python SDK
1+
# Vectorless SDK -- Python
22

33
Official Python SDK for [Vectorless](https://vectorless.store) -- document retrieval for the reasoning era.
44

@@ -7,9 +7,9 @@ Supports both **sync** and **async** clients. Full type hints with Pydantic v2.
77
## Installation
88

99
```bash
10-
pip install vectorless
10+
pip install vectorless-sdk
1111
# or
12-
uv add vectorless
12+
uv add vectorless-sdk
1313
```
1414

1515
## Quick Start

sdks/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "vectorless"
2+
name = "vectorless-sdk"
33
version = "0.1.0"
44
description = "Official Python SDK for Vectorless — document retrieval for the reasoning era"
55
readme = "README.md"

sdks/python/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)