Skip to content

Commit 722e6ad

Browse files
authored
1 parent 4c4c344 commit 722e6ad

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/experiment.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
with:
1919
python-version: '3.10'
2020

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
2525
- name: Download mod_spatialite
2626
run: Invoke-WebRequest -outfile spatialite.7z https://static.simonwillison.net/static/2024/spatialite-loadable-modules-5.0.0-win-amd64.7z
2727
- name: Unpack the archive
@@ -30,5 +30,5 @@ jobs:
3030
run: echo $PWD\spatialite-loadable-modules-5.0.0-win-amd64
3131
- name: Verify installation
3232
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')"
3434
# datasette --version

0 commit comments

Comments
 (0)