Skip to content

Commit 853a421

Browse files
committed
ci: simplify CI configuration and remove pysqlite3-binary
- Set CI to run on ubuntu-latest only - Removed installation of pysqlite3-binary from dependencies
1 parent 149a385 commit 853a421

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@ on:
88

99
jobs:
1010
test:
11-
runs-on: ${{ matrix.os }}
11+
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
os: [ubuntu-latest, windows-latest, macos-latest]
1514
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1615

1716
steps:
@@ -25,7 +24,6 @@ jobs:
2524
- name: Install dependencies
2625
run: |
2726
python -m pip install --upgrade pip
28-
pip install pysqlite3-binary
2927
pip install -e .
3028
pip install -r requirements-dev.txt
3129

0 commit comments

Comments
 (0)