Skip to content

Commit 0cee260

Browse files
committed
Don't upgrade setuptools on CI
1 parent 0dff048 commit 0cee260

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
run: rustup target add aarch64-apple-darwin
9595

9696
- name: Install test dependencies
97-
run: pip install --upgrade tox setuptools
97+
run: pip install --upgrade tox
9898

9999
- name: Install wheel (workaround python 3.10 CI issue)
100100
if: matrix.python-version == '3.10-dev'
@@ -170,7 +170,7 @@ jobs:
170170
run: |
171171
cd examples/rust_with_cffi/
172172
python --version
173-
pip install -U wheel setuptools
173+
pip install -U wheel
174174
python setup.py bdist_wheel --py-limited-api=cp39
175175
ls -la dist/
176176
env:
@@ -188,7 +188,7 @@ jobs:
188188
shell: bash
189189
run: |
190190
cd examples/
191-
pip install -U wheel setuptools
191+
pip install -U wheel
192192
python --version
193193
pip install rust_with_cffi/dist/rust_with_cffi*.whl
194194
python -c "from rust_with_cffi import rust; assert rust.rust_func() == 14"

0 commit comments

Comments
 (0)