diff --git a/.github/workflows/playbook-test.yml b/.github/workflows/playbook-test.yml index cc2ed1dfd4f..5b545cc4c32 100644 --- a/.github/workflows/playbook-test.yml +++ b/.github/workflows/playbook-test.yml @@ -31,7 +31,7 @@ jobs: PIP_TRUSTED_HOST: "pypi.python.org pypi.org files.pythonhosted.org" - name: Install Dependencies run: | - pip install setuptools<58 + pip install "setuptools<58" pip install demjson pip install -r requirements.txt - name: Run Make test.syntax diff --git a/.github/workflows/syntax-test.yml b/.github/workflows/syntax-test.yml index ef36e527d1f..636fbb47c97 100644 --- a/.github/workflows/syntax-test.yml +++ b/.github/workflows/syntax-test.yml @@ -31,7 +31,7 @@ jobs: PIP_TRUSTED_HOST: "pypi.python.org pypi.org files.pythonhosted.org" - name: Install Dependencies run: | - pip install setuptools<57.4.0 + pip install "setuptools<58" pip install demjson pip install -r requirements.txt - name: Run Make test.syntax