Skip to content

Commit 1292e4a

Browse files
authored
Simple demo sqlite-vec
1 parent 615c2d6 commit 1292e4a

File tree

1 file changed

+2
-28
lines changed

1 file changed

+2
-28
lines changed

.github/workflows/experiment.yml

+2-28
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Python Setup with Datasette and Spatialite
1+
name: sqlite-vec on Windows
22

33
on:
44
push:
@@ -9,47 +9,21 @@ on:
99
jobs:
1010
setup:
1111
runs-on: windows-latest
12-
1312
steps:
14-
- uses: actions/checkout@v4
15-
1613
- name: Set up Python 3.12
1714
uses: actions/setup-python@v5
1815
with:
1916
python-version: '3.12'
20-
21-
- name: Install Datasette
17+
- name: Install sqlite-vec
2218
run: |
23-
# python -m pip install pysqlite3-binary
24-
# pip install datasette
2519
pip install sqlite-vec
26-
- name: Download mod_spatialite
27-
run: Invoke-WebRequest -outfile spatialite.7z http://www.gaia-gis.it/gaia-sins/windows-bin-amd64/mod_spatialite-5.1.0-win-amd64.7z
28-
- name: Unpack the archive
29-
run: 7z.exe x spatialite.7z
30-
- name: Show all files
31-
run: |
32-
Get-ChildItem -Path $PWD -Recurse | ForEach-Object { $_.FullName }
33-
- name: Show path
34-
run: echo $PWD\mod_spatialite-5.1.0-win-amd64
3520
- name: Verify installation
3621
run: |
3722
python -c @"
3823
import sqlite3, os
3924
import sqlite_vec
40-
# spatialite_path = os.path.join(os.environ['GITHUB_WORKSPACE'], 'mod_spatialite-5.1.0-win-amd64', 'mod_spatialite.dll')
41-
# print(f'Checking path: {spatialite_path}')
42-
# exists = os.path.exists(spatialite_path)
43-
# if exists:
44-
# print(f'SpatiaLite file exists at: {spatialite_path}')
45-
# else:
46-
# assert False, f'SpatiaLite module not found at: {spatialite_path}'
4725
db = sqlite3.Connection(':memory:')
4826
db.enable_load_extension(True)
4927
db.load_extension(sqlite_vec.loadable_path())
5028
print(db.execute('select vec_version()').fetchall())
51-
# print("enable_load_extension(True) worked - trying to load extension: " + spatialite_path)
52-
# db.load_extension(spatialite_path)
53-
# print(db.execute('select spatialite_version()').fetchall())
5429
"@
55-
# datasette --version

0 commit comments

Comments
 (0)