diff options
| -rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d5a4990..0387a0b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,6 +18,12 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} + - name: Install version 24.0 readme_renderer if Python version == 3.4 + if: ${{ matrix.python-version == "3.4" }} + run: pip install readme_renderer==24.0 + - name: Install latest readme_renderer if Python version != 3.4 + if: ${{ matrix.python-version != "3.4" }} + run: pip install -U readme_renderer - name: Build websocket-client & run tests run: | pip install -U pip setuptools wheel twine six pytest |
