Skip to content

Commit

Permalink
update publish workflow (#15)
Browse files Browse the repository at this point in the history
* update pypi publish workflow

* update readme and project description
  • Loading branch information
ekorman authored Nov 9, 2024
1 parent 0df7415 commit d792f52
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
jobs:
build-and-publish:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand All @@ -17,5 +19,3 @@ jobs:
run: pip install build && python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ Note: this project is very similar to [vectordb-orm](https://github.com/piercefr
## Installation

```bash
pip install affine
# or `pip install affine[qdrant]` for qdrant support
# `pip install affine[weaviate]` for weaviate support
# `pip install affine[pinecone]` for pinecone support
pip install affine-vectordb
# or `pip install "affine-vectordb[qdrant]"` for qdrant support
# `pip install "affine-vectordb[weaviate]"` for weaviate support
# `pip install "affine-vectordb[pinecone]"` for pinecone support
```

## Basic Usage
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "affine-vectordb"
dynamic = ["version"]
description = ""
description = "A unified interface for vector databases"
readme = "README.md"
requires-python = ">=3.8"
dependencies = ["typing-extensions", "numpy"]
Expand Down

0 comments on commit d792f52

Please sign in to comment.