File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -12,30 +12,30 @@ jobs:
12
12
strategy :
13
13
matrix :
14
14
python-version : ['3.9', '3.13']
15
- packages : ['pyspark>=4.0.0', 'pyspark==3.5.6']
15
+ packages : ['pyspark>=4.0.0', 'pyspark==3.5.6 numpy<2.0.0 ']
16
16
exclude :
17
17
- python-version : ' 3.13'
18
18
packages : ' pyspark==3.5.6'
19
19
fail-fast : false
20
20
21
21
steps :
22
22
- uses : actions/checkout@v4
23
-
23
+
24
24
- name : Set up Python ${{ matrix.python-version }}
25
25
uses : actions/setup-python@v5
26
26
with :
27
27
python-version : ${{ matrix.python-version }}
28
-
28
+
29
29
- name : Install uv
30
30
run : |
31
31
curl -LsSf https://astral.sh/uv/install.sh | sh
32
32
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
33
-
33
+
34
34
- name : Install dependencies
35
35
run : |
36
- uv add --dev ${{ matrix.packages }}
37
- uv sync
38
-
36
+ uv add --no-sync -- dev ${{ matrix.packages }}
37
+ uv sync --python ${{ matrix.python-version }}
38
+
39
39
- name : Run tests
40
40
run : |
41
41
uv run pytest
You can’t perform that action at this time.
0 commit comments