Skip to content

Commit 32c0b58

Browse files
committed
force setuptools<81 version
1 parent 46f5075 commit 32c0b58

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[build-system]
22
build-backend = "setuptools.build_meta"
33
requires = [
4-
"setuptools>=72.0.0,<80.0.0",
4+
"setuptools>=72.0.0,<81.0.0",
55
"setuptools-scm>=8.0.0,<9.0.0",
66
"wheel>=0.38.4,<1.0.0"
77
]

0 commit comments

Comments
 (0)