|
1 |
| -name: Python Setup with Datasette and Spatialite |
| 1 | +name: sqlite-vec on Windows |
2 | 2 |
|
3 | 3 | on:
|
4 | 4 | push:
|
|
9 | 9 | jobs:
|
10 | 10 | setup:
|
11 | 11 | runs-on: windows-latest
|
12 |
| - |
13 | 12 | steps:
|
14 |
| - - uses: actions/checkout@v4 |
15 |
| - |
16 | 13 | - name: Set up Python 3.12
|
17 | 14 | uses: actions/setup-python@v5
|
18 | 15 | with:
|
19 | 16 | python-version: '3.12'
|
20 |
| - |
21 |
| - - name: Install Datasette |
| 17 | + - name: Install sqlite-vec |
22 | 18 | run: |
|
23 |
| - # python -m pip install pysqlite3-binary |
24 |
| - # pip install datasette |
25 | 19 | 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 |
35 | 20 | - name: Verify installation
|
36 | 21 | run: |
|
37 | 22 | python -c @"
|
38 | 23 | import sqlite3, os
|
39 | 24 | 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}' |
47 | 25 | db = sqlite3.Connection(':memory:')
|
48 | 26 | db.enable_load_extension(True)
|
49 | 27 | db.load_extension(sqlite_vec.loadable_path())
|
50 | 28 | 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()) |
54 | 29 | "@
|
55 |
| - # datasette --version |
0 commit comments