File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ jobs:
18
18
with :
19
19
python-version : ' 3.10'
20
20
21
- # - name: Install Datasette
22
- # run: |
23
- # python -m pip install --upgrade pip
24
- # pip install datasette
21
+ - name : Install Datasette
22
+ run : |
23
+ python -m pip install pysqlite3-binary
24
+ # pip install datasette
25
25
- name : Download mod_spatialite
26
26
run : Invoke-WebRequest -outfile spatialite.7z https://static.simonwillison.net/static/2024/spatialite-loadable-modules-5.0.0-win-amd64.7z
27
27
- name : Unpack the archive
30
30
run : echo $PWD\spatialite-loadable-modules-5.0.0-win-amd64
31
31
- name : Verify installation
32
32
run : |
33
- python -c "import sqlite3; sqlite3.enable_load_extension(True); sqlite3.load_extension('$env:GITHUB_WORKSPACE\spatialite-loadable-modules-5.0.0-win-amd64\mod_spatialite')"
33
+ python -c "import pysqlite3 as sqlite3; sqlite3.enable_load_extension(True); sqlite3.load_extension('$env:GITHUB_WORKSPACE\spatialite-loadable-modules-5.0.0-win-amd64\mod_spatialite')"
34
34
# datasette --version
You can’t perform that action at this time.
0 commit comments