File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 15
15
os : [ubuntu-latest, macos-latest, windows-latest]
16
16
include :
17
17
- os : ubuntu-latest
18
- pysqlite3_sqlite_3_37 : true
18
+ python-version : " 3.10"
19
+ numpy : 0
20
+ pysqlite3_sqlite_3_37 : 1
19
21
steps :
20
22
- uses : actions/checkout@v2
21
23
- name : Set up Python ${{ matrix.python-version }}
36
38
if : matrix.numpy == 1
37
39
run : pip install numpy
38
40
- name : Optionall install pysqlite3 with SQLite 3.37
39
- if : matrix.pysqlite3_sqlite_3_37
41
+ if : matrix.pysqlite3_sqlite_3_37 == 1
40
42
run : |-
41
43
cd /tmp
42
44
mkdir sqlite-3.37
46
48
git clone https://github.com/coleifer/pysqlite3/
47
49
cp sqlite-amalgamation-3370000/sqlite3.[ch] pysqlite3
48
50
cd pysqlite3
51
+ pip install wheel
49
52
python setup.py build_static build bdist_wheel
50
53
pip install /tmp/sqlite-3.37/pysqlite3/dist/*.whl
51
54
- name : Run tests
You can’t perform that action at this time.
0 commit comments