Skip to content

Commit 017d30f

Browse files
ci: fix export deps
1 parent bc95da2 commit 017d30f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/auto-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
strategy:
4848
fail-fast: false
4949
matrix:
50-
python-version: ['3.8', '3.12']
50+
python-version: ['3.12', '3.13']
5151
os-version: [ubuntu-latest, windows-latest, macos-latest]
5252

5353
runs-on: ${{ matrix.os-version }}
@@ -62,7 +62,7 @@ jobs:
6262
- name: Use Python ${{ matrix.python-version }}
6363
uses: actions/setup-python@v4
6464
with:
65-
python-version: ${{ matrix.python-version == '3.7' && matrix.os-version == 'macos-latest' && '3.7.16' || matrix.python-version }}
65+
python-version: ${{ matrix.python-version }}
6666
- name: Download test data
6767
working-directory: ./
6868
run: |
@@ -73,7 +73,7 @@ jobs:
7373
env:
7474
PIP_ONLY_BINARY: "duckdb"
7575
run: |
76-
pip install ./
76+
pip install ".[export]"
7777
- name: Try Install Modin In Linux Os
7878
if: ${{ matrix.os-version == 'ubuntu-latest' && matrix.python-version == '3.11' }}
7979
run: |
@@ -101,4 +101,4 @@ jobs:
101101
path: |
102102
./tests/main.html
103103
./tests/offline.html
104-
./tests/stress-test.html
104+
./tests/stress-test.html

0 commit comments

Comments
 (0)