summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsif Saif Uddin <auvipy@gmail.com>2021-12-22 08:58:30 +0600
committerGitHub <noreply@github.com>2021-12-22 08:58:30 +0600
commitee1cb98e1fa81be03b8e5fb84bf805fbcf32140d (patch)
tree1b2b91c229547e5e88e8dca804088e4a9ea0c82f
parentb71b4215c98ec743c754c7d8dbe0dc2810deb91e (diff)
downloadkombu-setuptoolci.tar.gz
try restrict setuptool in CIsetuptoolci
-rw-r--r--.github/workflows/ci.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 117496a8..0c5fab6b 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -18,7 +18,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- run: pip install --upgrade pip setuptools wheel tox tox-docker
+ run: pip install --upgrade pip 'setuptools<59.7.0' wheel tox tox-docker
- name: Run unittest
run: tox -v -e ${{ matrix.python-version }}-linux-unit -- -v
#################### Integration tests ####################
@@ -47,7 +47,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- run: pip install --upgrade pip setuptools wheel tox tox-docker
+ run: pip install --upgrade pip 'setuptools<59.7.0' wheel tox tox-docker
# Tox fails if a Python versions contains a hyphen, this changes "pypy-3.8" to "pypy3.8".
- name: Determine Python version
run: echo PYTHON_VERSION=$(echo ${{ matrix.python-version }} | sed s/-//) >> $GITHUB_ENV
@@ -74,7 +74,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- run: pip install --upgrade pip setuptools wheel tox tox-docker
+ run: pip install --upgrade pip 'setuptools<59.7.0' wheel tox tox-docker
- name: Run flake8
run: tox -v -e flake8 -- -v
- name: Run pydocstyle