Skip to content

Commit 66f344c

Browse files
committed
Get rid of setuptools and wheel deps
1 parent 34bedf9 commit 66f344c

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

Diff for: .github/actions/run-tests/action.yml

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ runs:
3636
set -e
3737
3838
echo "::group::Installing dependencies"
39-
pip install -U setuptools wheel
4039
pip install -r dev_requirements.txt
4140
pip uninstall -y redis # uninstall Redis package installed via redis-entraid
4241
pip install -e . # install the working copy

Diff for: .github/workflows/pypi-publish.yaml

+1-5
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,7 @@ jobs:
1818
uses: actions/setup-python@v5
1919
with:
2020
python-version: 3.9
21-
- name: Install dev tools
22-
run: |
23-
pip install -r dev_requirements.txt
24-
pip uninstall -y redis # uninstall Redis package installed via redis-entraid
25-
pip install build twine wheel
21+
- run: pip install build twine
2622

2723
- name: Build package
2824
run: python -m build .

Diff for: dev_requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,5 @@ pytest-timeout
1515
ujson>=4.2.0
1616
uvloop
1717
vulture>=2.3.0
18-
wheel>=0.30.0
1918
numpy>=1.24.0
2019
redis-entraid==0.3.0b1

0 commit comments

Comments
 (0)