mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-09-27 12:24:11 +02:00
Fix for SpatialLite installation failure
Fable 5.1 explains: > apt on the runner image has stale package lists. It tried to download libminizip1t64_1.3.dfsg-3.1ubuntu2.1 from security.ubuntu.com and got a 404, because Ubuntu has since published a newer build of that package and pulled the old .deb from the mirror.
This commit is contained in:
parent
b97295271c
commit
f7e3174401
1 changed files with 1 additions and 1 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -31,7 +31,7 @@ jobs:
|
||||||
run: pip install numpy
|
run: pip install numpy
|
||||||
- name: Install SpatiaLite
|
- name: Install SpatiaLite
|
||||||
if: matrix.os == 'ubuntu-latest'
|
if: matrix.os == 'ubuntu-latest'
|
||||||
run: sudo apt-get install libsqlite3-mod-spatialite
|
run: sudo apt-get update && sudo apt-get install -y libsqlite3-mod-spatialite
|
||||||
- name: Build extension for --load-extension test
|
- name: Build extension for --load-extension test
|
||||||
if: matrix.os == 'ubuntu-latest'
|
if: matrix.os == 'ubuntu-latest'
|
||||||
run: |-
|
run: |-
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue