Skip to content

Commit fbd055e

Browse files
committed
chore(actions): fix the setuptools version to <81
1 parent 82479e9 commit fbd055e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
restore-keys: |
5353
${{ runner.os }}-${{ matrix.pandas }}-pip-
5454
- run: |
55-
pip install --upgrade pip setuptools wheel
55+
pip install --upgrade pip "setuptools<81" wheel
5656
pip install ".[test]" "${{ matrix.pandas }}" "${{ matrix.numpy }}"
5757
- run: echo "YDATA_PROFILING_NO_ANALYTICS=False" >> $GITHUB_ENV
5858
- run: make install
@@ -100,7 +100,7 @@ jobs:
100100
restore-keys: |
101101
${{ runner.os }}-${{ matrix.pandas }}-pip-
102102
- run: |
103-
pip install --upgrade pip setuptools wheel
103+
pip install --upgrade pip "setuptools<81" wheel
104104
pip install ".[test]" "${{ matrix.pandas }}" "${{ matrix.numpy }}"
105105
echo "YDATA_PROFILING_NO_ANALYTICS=False" >> $GITHUB_ENV
106106
- run: make install
@@ -115,7 +115,7 @@ jobs:
115115
restore-keys: |
116116
${{ runner.os }}-${{ matrix.pandas }}-pip-
117117
- run: |
118-
pip install --upgrade pip setuptools wheel
118+
pip install --upgrade pip "setuptools<81" wheel
119119
pip install ".[test]" "${{ matrix.pandas }}" "${{ matrix.numpy }}"
120120
- run: make install
121121
- run: make test_cov
@@ -163,7 +163,7 @@ jobs:
163163
164164
- name: Install Dependencies
165165
run: |
166-
python -m pip install -U pip setuptools wheel
166+
python -m pip install -U pip "setuptools<81" wheel
167167
pip install "pyspark~=${{ matrix.pyspark-version }}" "pyarrow>4.0.0" --no-cache-dir
168168
pip install ".[test]"
169169
# Make PySpark use this Python and bind locally; give it a safe tmp dir

0 commit comments

Comments
 (0)