Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
1yefuwang1 committed Aug 27, 2024
1 parent c816503 commit 9d62722
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 77 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
sphinx-build doc _build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: ${{ (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/doc' }}
if: ${{ (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/main' }}
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
57 changes: 0 additions & 57 deletions doc/markdown/another-feature.md

This file was deleted.

4 changes: 2 additions & 2 deletions doc/markdown/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The quickest way to get started is to install vectorlite using python.
pip install vectorlite-py apsw numpy
```
Vectorlite's metadata filter feature requires sqlite>=3.38. Python's builtin `sqlite` module is usually built with old sqlite versions. So `apsw` is used here as sqlite driver, because it provides bindings to latest sqlite. Vectorlite still works with old sqlite versions if metadata filter support is not required.
Below is a minimal example of using vectorlite. It can also be found in the examples folder.
Below is a minimal example of using vectorlite. It can also be found in the [examples folder](https://github.com/1yefuwang1/vectorlite/tree/v0.2.0/examples).

```python
import vectorlite_py
Expand Down Expand Up @@ -66,4 +66,4 @@ conn.close()

```

More examples can be found in examples and bindings/python/vectorlite_py/test folder.
More examples can be found in [examples](https://github.com/1yefuwang1/vectorlite/tree/v0.2.0/examples) folder.
17 changes: 0 additions & 17 deletions doc/markdown/some-feature.md

This file was deleted.

0 comments on commit 9d62722

Please sign in to comment.