Skip to content

Commit 066404c

Browse files
authored
cicd: do not install setuptools (#539)
We were missing an issue upstream about a deprecated stdlib module because `setuptools` comes with an in-place fix -- but `setuptools` wasn't an explicit dependency declared for downstream users. I think we should just start with whatever `setup-python` gives us unless there's a pressing need.
1 parent 27567b6 commit 066404c

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

.github/workflows/python-cqa.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ jobs:
1010
with:
1111
submodules: recursive
1212
- uses: actions/setup-python@v5
13-
- name: Update pip and setuptools
14-
run: |
15-
python -m pip install --upgrade pip setuptools
1613
- name: Install dependencies
1714
run: pip install -e '.[dev]'
1815
- name: Check style
@@ -44,9 +41,6 @@ jobs:
4441
uses: actions/setup-python@v5
4542
with:
4643
python-version: ${{ matrix.python-version }}
47-
- name: Update pip and setuptools
48-
run: |
49-
python -m pip install --upgrade pip setuptools
5044
- name: Install dependencies
5145
run: |
5246
pip install -e .[dev,extras]

0 commit comments

Comments
 (0)